$(document).ready(function(){
   	$("#home").hover(
	 function(){$(this).attr("src", "/images/nav/home_hover.jpg");},
	 function(){$(this).attr("src", "/images/nav/home.jpg");}
	 );  
						   
   	$("#industrial").hover(
	 function(){$(this).attr("src", "/images/nav/industrial_hover.jpg");},
	 function(){$(this).attr("src", "/images/nav/industrial.jpg");}
	 );  

   	$("#electrical").hover(
	 function(){$(this).attr("src", "/images/nav/electrical_hover.jpg");},
	 function(){$(this).attr("src", "/images/nav/electrical.jpg");}
	 );  

   	$("#drafting").hover(
	 function(){$(this).attr("src", "/images/nav/drafting_hover.jpg");},
	 function(){$(this).attr("src", "/images/nav/drafting.jpg");}
	 );  

   	$("#energy").hover(
	 function(){$(this).attr("src", "/images/nav/energy_hover.jpg");},
	 function(){$(this).attr("src", "/images/nav/energy.jpg");}
	 );  
	
   	$("#project").hover(
	 function(){$(this).attr("src", "/images/nav/projects_hover.jpg");},
	 function(){$(this).attr("src", "/images/nav/projects.jpg");}
	 ); 
	
   	$("#engineering").hover(
	 function(){$(this).attr("src", "/images/nav/engineering_hover.jpg");},
	 function(){$(this).attr("src", "/images/nav/engineering.jpg");}
	 );  
	
   	$("#fab").hover(
	 function(){$(this).attr("src", "/images/nav/fab_hover.jpg");},
	 function(){$(this).attr("src", "/images/nav/fab.jpg");}
	 );  
	
   	$("#contact").hover(
	 function(){$(this).attr("src", "/images/nav/contact_hover.jpg");},
	 function(){$(this).attr("src", "/images/nav/contact.jpg");}
	 );  
	
	$("#feature").hover(
	  function(){
		$(".feature").stop().fadeTo("slow", 0);
	  }, 
	  function(){
		$(".feature").stop().fadeTo("slow", 1);
	  }
	);

	
});





