// JavaScript Document


$(document).ready(function() {
						   
						  // alert("in");
		
		$("#navHome").hover(function(){
			this.src = "/images/nav_home_hover.jpg";
		}, function(){
			this.src = "/images/nav_home_off.jpg";
		});

		$("#navLocations").hover(function(){
			this.src = "/images/nav_locations_hover.jpg";
		}, function(){
			this.src = "/images/nav_locations_off.jpg";
		});

		$("#navAboutus").hover(function(){
			this.src = "/images/nav_aboutus_hover.jpg";
		}, function(){
			this.src = "/images/nav_aboutus_off.jpg";
		});

		$("#navCareers").hover(function(){
			this.src = "/images/nav_careers_hover.jpg";
		}, function(){
			this.src = "/images/nav_careers_off.jpg";
		});

		$("#navHotvacancies").hover(function(){
			this.src = "/images/nav_hotvacancies_hover.jpg";
		}, function(){
			this.src = "/images/nav_hotvacancies_off.jpg";
		});

		$("#nacContactus").hover(function(){
			this.src = "/images/nav_contactus_hover.jpg";
		}, function(){
			this.src = "/images/nav_contactus_off.jpg";
		});

		
		
});



