 $(document).ready(function(){
    
	if( ($.browser.msie) && (parseInt(jQuery.browser.version) < 7) ){
		//alert(instr($("img.rollover").attr("src"), ".png") )
		//if( instr($("img.rollover").src, ".png") > 0 ){
		//	var src = $(this).attr("src").replace(".png", ".gif");
		//	$(this).attr("src", src);
		//}
		
		$("img.rollover")
			.mouseover(function() { 
				var src = $(this).attr("src").match(/[^\.]+/) + "_on.png";
				$(this).attr("src", src);
			})
			.mouseout(function() {
				var src = $(this).attr("src").replace("_on", "");
				$(this).attr("src", src);
			});
		
		$(document).pngFix();
	}else{
		$("img.rollover")
			.mouseover(function() { 
				var src = $(this).attr("src").match(/[^\.]+/) + "_on.png";
				$(this).attr("src", src);
			})
			.mouseout(function() {
				var src = $(this).attr("src").replace("_on", "");
				$(this).attr("src", src);
			});
	}



  });

