picm1= new Image();
picm1.src="/images/new_menu_bigh.png";
$(document).ready(function() {
$("#email").click(function() {
$("#flashcontent").html('

Loading, please wait...
');
});
$("#reviews").find("strong").each(function() {
$(this).parent().css("margin-top", "5px");
});
$("#reviews").find("a").each(function() {
$(this).parent().css("margin-bottom", "10px");
});
$("#review").click(function() {
$("#reviews").toggle();
});
$("#restaurant_menu_big").hover(
function() {
$(this).attr("src", "/images/new_menu_bigh.png");
}, function() {
$(this).attr("src", "/images/new_menu_big.png");
}
);
$("#flashcontent").hover(
function() {
}, function() {
$(this).blur();
}
);
});