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