 $(document).ready(function() {

$('.red_icon_wrapper a').hover(
function() {
if ($.browser.msie) {
   		$(this).find('.rollover').css('display', 'none');
  	}
else { 
$(this).find('.rollover').stop(true, true).fadeIn('normal'); 
}
},
	function() {
if ($.browser.msie) {
   		$(this).find('.rollover').css('display', 'none');
  	}
else { 
$(this).find('.rollover').stop(true, true).fadeOut('normal');
		} 
}
);

/* YELLOW */

	
	$('.yellow_icon_wrapper a').hover(
function() {
if ($.browser.msie) {
   		$(this).find('.rollover').css('display', 'none');
  	}
else { 
$(this).find('.rollover').stop(true, true).fadeIn('normal'); 
}
},
	function() {
if ($.browser.msie) {
   		$(this).find('.rollover').css('display', 'none');
  	}
else { 
$(this).find('.rollover').stop(true, true).fadeOut('normal');
		} 
}
);


/* GREEN */

	
	$('.green_icon_wrapper a').hover(
function() {
if ($.browser.msie) {
   		$(this).find('.rollover').css('display', 'none');
  	}
else { 
$(this).find('.rollover').stop(true, true).fadeIn('normal'); 
}
},
	function() {
if ($.browser.msie) {
   		$(this).find('.rollover').css('display', 'none');
  	}
else { 
$(this).find('.rollover').stop(true, true).fadeOut('normal');
		} 
}
);

/* BLUE */
	 
	$('.blue_icon_wrapper a').hover(
function() {
if ($.browser.msie) {
   		$(this).find('.rollover').css('display', 'none');
  	}
else { 
$(this).find('.rollover').stop(true, true).fadeIn('normal'); 
}
},
	function() {
if ($.browser.msie) {
   		$(this).find('.rollover').css('display', 'none');
  	}
else { 
$(this).find('.rollover').stop(true, true).fadeOut('normal');
		} 
}
);



});
