// JavaScript Document
$(document).ready(function(){
 $("#menus_b").mouseover(function(){
				$(this).find(".submenu").stop().animate({height:260,borderTopWidth:'1px',borderBottomWidth:'1px'},{queue:false, duration:800, easing: 'easeOutBack'});
});
$("#menus_b").mouseout(function(){
				$(this).find(".submenu").stop().animate({height:0,borderTopWidth:'0px',borderBottomWidth:'0px'},{queue:false, duration:600, easing: 'easeInBack'});
});

 $("#gallery_b").mouseover(function(){
				$(this).find(".submenu").stop().animate({height:110,borderTopWidth:'1px',borderBottomWidth:'1px'},{queue:false, duration:800, easing: 'easeOutBack'});
});
$("#gallery_b").mouseout(function(){
				$(this).find(".submenu").stop().animate({height:0,borderTopWidth:'0px',borderBottomWidth:'0px'},{queue:false, duration:600, easing: 'easeInBack'});
});

});
