﻿$(function()
{
	$(".rollover").each(function(){
		$(this).hover(MouseOverRollOver,MouseOutRollOver).attr("out", $(this).attr("src"));
	});
});
function MouseOverRollOver()
{
	$(this).attr("src", $(this).attr("over"));
}
function MouseOutRollOver()
{
	$(this).attr("src", $(this).attr("out"));
}
