$(document).ready(function(){
	
	$('.reserveTastingPopup').click(function() {
		var href = $(this).attr('href');
		window.open(href,'','menubar=0,location=no,toolbar=0,width=538,height=590');
		return false;
		
	});

});