jQuery(document).ready(function(){
	jQuery('#slide_up .close_btn a').click(function()
	{
		jQuery('#slide_up').slideUp('slow');
	})

jQuery(function() {
    jQuery("#navigation ul ul").css({ display: 'none' });
    jQuery("#navigation ul li").hover(function() {
        jQuery(this).find('ul.sub-menu')
      .stop(true, true).delay(50).animate({ "height": "show", "opacity": "show" }, 200 );
    }, function(){
    jQuery(this).find('ul.sub-menu')
     .stop(true, true).delay(50).animate({ "height": "hide", "opacity": "hide" }, 200 );
    });
});
});
