$(document).ready(function() {

	// $('ul#headnav img').hover(
	// 	function(){
	// 		$(this).attr('src').replace('_off','_hov');
	// 	},
	// 	function(){
	// 		$(this).attr('src').replace('_hov','_off');
	// 	}
	// );

	$('ul#headnav img').hover(
		function(){
			$(this).attr('src',$(this).attr('src').replace('_off','_hov'));
		},
		function(){
			$(this).attr('src',$(this).attr('src').replace('_hov','_off'));
		}
	);
	
});
