﻿/* Local JS */
// jQuery Dependent

// Site Loaded
$(document).ready(onSiteLoad);

function onSiteLoad() {
	initMenu()
}



function initMenu() {

  pic1= new Image(96,300); 
  pic1.src="/static/images/bg_bottom_smenu.png"; 
  
  pic2= new Image(96,32); 
  pic2.src="/static/images/bg_top_smenu.png"; 


    var hasMouseLeave = false;
    
    hasMouseLeave = false;

    
    $('#menuMain > ul > li.withChildren  > a.link').parent().mouseenter(function(e){
        var $li = $(this);
        hasMouseLeave = false;
        
        $( $li).addClass('nav-mouseover');
       
                $('ul', $li).show();
      
    });

    

    $('#menuMain > ul > li.withChildren > a.link').parent().mouseleave(function(e){
        var $li = $(this);
        
        hasMouseLeave = true;

        
        setTimeout(function(){
        
            if(hasMouseLeave===true && $($li).hasClass('nav-mouseover')){
                $('#menuMain > ul > li > ul').hide();
                 $($li).removeClass('nav-mouseover');
            }
        }, 1000);
        
       
    });

}




