
function imageSwap() {

	var showImage
	
	jQuery('.swapMe').hover(function(){
		
		showImage = 'images/'+jQuery(this).attr('alt')+'_on.gif'
		jQuery(this).attr('src',showImage);
		
	}, function(){
	
		showImage = 'images/'+jQuery(this).attr('alt')+'.gif'	
		jQuery(this).attr('src',showImage);
	
	});
	
	
	
}
