
// fires when page is ready

$(document).ready(function(){

	// change main nav images on hover

	jQuery(".header_img").hover(function(){
		// NEED TO ENSURE IS NAV IMAGE
		
		var sp = this.src.indexOf('nav_star');
		if(sp == -1) this.src = this.src.replace("_n","_s");
	}, function(){
		var sp = this.src.indexOf('nav_star');
		if(sp == -1) this.src = this.src.replace("_s","_n");
	});
	
});
