// JavaScript Document

// Fade In Menu System Code.

$(document).ready(function () {  
  
    $('#nav-menu li').append('<div class="hover"></div>');  
    
    $('#nav-menu li').hover(  
          
        function() {  
              
            $(this).children('div').fadeIn('1000');   
          
        },   
       
        function() {  
          
            $(this).children('div').fadeOut('1000');      
          
    }).click (function () {  
          
    });  
  
});  

// Right Box - The code is saying to make any <li> with the class="right-box" a clickable link to the <a> tag within the list item.

$(document).ready(function(){
						   
	$(".right-box li").click(function(){
    	
		window.location=$(this).find("a").attr("href");return false;
	
	});
 
});
