// JavaScript Document

 
    $(document).ready(function(){  
							  
      
			$('#menu').bind('mouseover', function () {  
					$(this).stop().animate({ backgroundColor: "#B3CAE3"}, 800);   
				});  
	  		$('#menu').bind('mouseout', function () {  
	  				$(this).stop().animate({ backgroundColor: "#ffffff" }, 800);    
	  			});  
        	$("#footer").bind('mouseover', function () {  
					$(this).stop().animate({ backgroundColor: "#B3CAE3"}, 800);   
				});  
	  		$("#footer").bind('mouseout', function () {  
	  				$(this).stop().animate({ backgroundColor: "#003399" }, 800);    
	 			});  
    		$('.navigation').bind('mouseover', function () {  
					$(this).stop().animate({ backgroundColor: "#D8E3F1"}, 800);   
				});  
	  		$('.navigation').bind('mouseout', function () {  
	  				$(this).stop().animate({ backgroundColor: "#ffffff" }, 800);    
	  			});  
  });  
