$(function(){
	$("a#getofficemenulink").mouseover(function(event) {

	$("div#getofficemenu").hide();
	$(this).animate({width:$(this).width()},300,
	function()
		{
			$("div#officemenu").fadeIn("normal");
			$("div#restaurantmenu").hide();
			$("div#getrestaurantmenu").show();			
		})
});
});

$(function(){
	$("a#getrestaurantmenulink").mouseover(function(event) {

	$("div#getrestaurantmenu").hide();
	$(this).animate({width:$(this).width()},300,
	function()
		{
			$("div#restaurantmenu").fadeIn("normal");
			$("div#officemenu").hide();
			$("div#getofficemenu").show();
		})
});
});
