$(document).ready( function() {
	$("img.sajattermek").each(function() {
		var $t=$(this);
		$t.hover(
			function() {
				$t.attr("src",$t.attr("srcroll")); },
			function() {
				$t.attr("src",$t.attr("srcdef")); } 
		);
	});

	$("img.termover").hover(function() {
		$(this).attr("src",$(this).attr("rollsrc"));
	},function() {
		$(this).attr("src",$(this).attr("defsrc"));
	});

});

