$(document).ready(function(){
	$('a[rel="print"]').click( function() {
	 	TheNewWin = window.open($(this).attr('href'),'mypop','height=600,width=555,toolbar=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no');
	  return false;
	});

	$('#menuShop').click( function(ev) {
	 	ev.preventDefault();
        $("#shopSubmenu").toggle();
	});
});