$(document).ready(function(){

	//Mouseover images
	$(".mouseover").hover(
		function()
		 {
		  this.src = this.src.replace("_under","_over");
		 },
		 function()
		 {
		  this.src = this.src.replace("_over","_under");
		 }
	);
});
