$(document).ready(function(){
	
	$(".banner_on").each(function(){
		var srcc = $(this).attr("rel");
		$("<img />").attr("src", srcc);
	});
	
	var osrc = $(this).attr("src");
	var orel = $(this).attr("rel");
	
	$(".banner_on").hover(function(){
		osrc = $(this).attr("src");
		orel = $(this).attr("rel");
		$(this).attr("src", orel);
	},function(){
		$(this).attr("src", osrc);
	});
	
});
