//**********************************************************************************************************************
/**
* COMPANY: Zipline Interactive
* EMAIL: infon@gozipline.com
* PHONE: 509-321-2849
* DESCRIPTION: This document contains programming required for the website templates.  Requires the jQuery library.
*/
//***********************************************************************************************************************


//***********************************************************************************************************************
//ON DOCUMENT READY FUNCTIONS
//***********************************************************************************************************************
var src = "";

$(document).ready(function() {

	$('.navImage').hover(function(){
	
		src = $(this).attr('src');
		var new_src = src.replace('_off','_on');
		$(this).attr('src',new_src);
	
	},function(){
	
		$(this).attr('src',src);
	
	});
	
	

});
