/*===========SHOHAG===============*/

jQuery(document).ready(function($){
             
//  $('ul.mainmenu > li').each(function(){$(this).find('ul > li:last-child').addClass('bdrnone');});
    $('div.menu-header ul li').hover(
		function(){
			$(this).children('ul').stop(true, true).slideDown('fast');
		},
		function(){
			$(this).children('ul').slideUp('fast');
		}
	);
          
}); //EndOf document ready;

