
/* BY ANDREBOEKHORST
// www.andreboekhorst.nl
//-------------------------*/

/* <ul><li><a> MainItem </a><ul><li> SubItem </li><li> Subitem </li></ul></li></ul>
*/

$(document).ready(function(){
  
    /* Add Dropdown functionality */ 
    $(".menu > ul > li > a").each(function() { 

        $(this).closest('li').hover(
            
            function() { //hover start
                                           
                $(".menu > ul > li > ul").each(function() { 
                
                    $(this).css("display", "none"); 
                	
                	$(this).closest('li').removeClass("mouseOver");
                	
                });
               
               	$(this).addClass("mouseOver");
               
               	$(this).children('ul').slideDown(150);                                                                    
                
            },
                
            function() { //hover end
              				$(this).children('ul').slideUp(0);
                    		$(this).removeClass("mouseOver");
  							$(this).children('ul').css("display", "none"); 
  							
            }
        );            

		$(this).closest('ul').hover(
		
			function(){
				$(this).closest('li').addClass("mouseOver");
				$(this).slideDown(200); 
			}
		);
                

    });   
    
    
    // 	Animate the Willie Creek Logo
    //	God is in the details
    
		$('#logo').hover(			
			function() {			
  				$('#logo').stop().animate({
    				top: '0'
  				}, 300);
			},		
			function() {	
  				$('#logo').stop().animate({
    				top: '-10'
  				}, 300);
			}
		);
		
		
});






