//jQuery
$(document).ready(function(){
						   
					   
	$('.main_nav_item').hover(function(){
	var temp=$(this).attr('src')
	temp=temp.replace('.gif', '_over.gif');
	$(this).attr('src', temp);
	}, 
	function() {
	var temp=$(this).attr('src')
	temp=temp.replace('_over.gif', '.gif');
	$(this).attr('src', temp);
	});
	
	
	$('.rollover_item').hover(function(){
	var temp=$(this).attr('src')
	temp=temp.replace('.jpg', '_over.jpg');
	$(this).attr('src', temp);
	}, 
	function() {
	var temp=$(this).attr('src')
	temp=temp.replace('_over.jpg', '.jpg');
	$(this).attr('src', temp);
	});
	
			
}); // end ready

