$(document).ready(function() {
	// jquery code goes here
	if($.browser.msie){
		return;
	}

	var rollovers = $("img.rollover");

	jQuery.each(rollovers, function() {
		$(this).css('background-image', 'url('+$(this).attr("src").replace("_off","_on")+')');
		$(this).crossfade();
	});

	/*
	$("img.rollover").hover(
		function(){
			$(this).fadeOut('slow');
	 	},
		function(){
			$(this).fadeIn('slow');
		}
	);*/

});

