﻿// *****************************
// jQuery code for DEFAULT.ASPX
// *****************************

$(document).ready(function(){
	$("#navHome").hover(
		function(){ $(this).find("img").attr("src", "images/IMGnavHome_hover.png"); }, 
		function(){ $(this).find("img").attr("src", "images/IMGnavHome.png"); }
	);
	
	$("#navTestimonials").hover(
		function(){ $(this).find("img").attr("src", "images/IMGnavTestimonials_hover.png"); }, 
		function(){ $(this).find("img").attr("src", "images/IMGnavTestimonials.png"); }
	);
	
	$("#navFAQ").hover(
		function(){ $(this).find("img").attr("src", "images/IMGnavFAQ_hover.png"); }, 
		function(){ $(this).find("img").attr("src", "images/IMGnavFAQ.png"); }
	);
	
	$("#navContact").hover(
		function(){ $(this).find("img").attr("src", "images/IMGnavContact_hover.png"); }, 
		function(){ $(this).find("img").attr("src", "images/IMGnavContact.png"); }
	);
});
