$(document).ready(function() {

	$("#topNav img").hover(
	
		function() {
			var newImg = $(this).attr("src").split('.gif').join('_on.gif');
			$(this).attr("src", newImg);
		},
		function() {
			//console.log('out');
			var oldImg = $(this).attr("src").split('_on.gif').join('.gif');
			$(this).attr("src", oldImg);
		}
		
	);
	
	$("#productSelection img").hover(
	
		function() {
			var newImg = $(this).attr("src").split('.jpg').join('_hover.jpg');
			$(this).not('.selected').attr("src", newImg);
		},
		function() {
			//console.log('out');
			var oldImg = $(this).attr("src").split('_hover.jpg').join('.jpg');
			$(this).not('.selected').attr("src", oldImg);
		}
		
	);

});
