$(document).ready(function() {
	rmSkype = function () {
		$('.skype_pnh_container').html('');
		$('.skype_pnh_print_container').each(function () {
			var a = $(this).parent();
			$(a).attr('href', $(a).attr('href').replace('tel:', 'skype:+')+'?call');
		});
		$('.skype_pnh_print_container').removeClass('skype_pnh_print_container');
	}
	rmSkype();
	window.setTimeout(rmSkype, 800);
	window.setTimeout(rmSkype, 1200);
	window.setTimeout(rmSkype, 3500);
	window.setTimeout(rmSkype, 5500);
});

menuForm = function(f) {
	var loc = $('#menuSelect').val();
	if (loc == "/menu/") {
		alert('Please Select a Location First');
		$('#menuSelect').focus();
		return false;
	}
	document.location = loc;
	return false;
}
