//menu
$(document).ready(function(){
	$("#fancytabs .tab").hover(function(){
		$(this).find(".panel").animate({ bottom: "0px" }, { queue: false, duration: 200 });
	},function(){
		$(this).find(".panel").animate({ bottom: "-275px" }, { queue: false, duration: 600 });
	});

});



