$(document).ready(function(){ 
	
	
    
	//main menu
	$('ul.sf-menu').superfish({ 
            delay:       1000,                            // one second delay on mouseout 
            animation:   {opacity:'show'},  // fade-in and slide-down animation 
            speed:       'fast',                          // faster animation speed 
            autoArrows:  false,                           // disable generation of arrow mark-up 
            dropShadows: false                            // disable drop shadows 
        }); 
	
	//modal box
	$('.jQmdl').click(function (e) {
		$(this).next('div.jQmdl_cnt').modal({
			opacity:0,
			zIndex:9999
		});
		return false;
	});
	
	/*
	if ($(window).height()<650) {
		
		$("ul.sf-menu li.sub_height").each(function (i) {
				var ul_height = $(this).children('ul').height();
				$(this).children('ul').css('top', '-'+(ul_height+14)+'px');
				$(this).children('ul').addClass('to_top');
	  });
		
	}
*/
  
  
}); 




