$(document).ready(function(){
$('a[href^="skype"]').each(function(){
var oldUrl = $(this).attr("href");
var newUrl = oldUrl.replace("skype:+", "tel:+");
$(this).attr("href", newUrl);
});
});
$(document).ready(function(){
if ($(window).width < 700){
alert("mobile");
}
else {
alert("not mobile");
}
});