$(document).ready(function() {
	$(".doBannerUpdate").click(function() {
			var tmpSrc;
			$.each($(".thisBannerUpdade"), function () { 
				tmpSrc = $(this).attr("src"); 
				$(this).attr({"src":""});
				$(this).attr({"src":tmpSrc});	
			});
	 });
});
