$(document).ready(function () {
	
	$('.imgHover').hover(
	function()
	{
	 	this.src = this.src.replace("_up","_over");
	},
	function()
	{
	 	this.src = this.src.replace("_over","_up");
	}
	);
	
});
