   $(document).ready(function(){
		$("#small_flags a img").hover(function(){
			if($(this).attr("src").indexOf("_hover") == -1) {
				var newSrc = $(this).attr("src").replace(".gif","_hover.gif#hover");
				$(this).attr("src",newSrc);
			}
		},
		function(){
			if($(this).attr("src").indexOf("_hover.gif#hover") != -1) {
				var oldSrc = $(this).attr("src").replace("_hover.gif#hover",".gif");
				$(this).attr("src",oldSrc);
			}
		});
			
	});
	
