jQuery.fn.imgRollOver = function(imgOver) {
	this.each(function(){
		$(this).hover(function(){
			imgOff = $(this).attr("src");
			$(this).attr("src",imgOver);
		},function(){
			$(this).attr("src",imgOff);
		});
	});
}