$(document).ready(function() {	
	if ($.browser.msie)	{
		$(".icons .icon_home").hover(
					function (){	$(this).attr("src","../images/home_hover.gif");	},
					function (){	$(this).attr("src","../images/home.gif");	}
		)
		$(".icons .icon_map").hover(
					function (){	$(this).attr("src","../images/map_hover.gif");	},
					function (){	$(this).attr("src","../images/map.gif");	}
		)
		$(".icons .icon_mail").hover(
					function (){	$(this).attr("src","../images/mail_hover.gif");	},
					function (){	$(this).attr("src","../images/mail.gif");	}
		)

	}
	else {
		$(".icons .icon_home").hover(function (){
							$(this).animate({ opacity: "0" }, 300,
											function(){
												$(this).attr("src","../images/home_hover.gif");
												$(this).animate({ opacity: "1" }, 300);
											});},
									function (){
							$(this).animate({ opacity: "0" }, 300,
											function(){
												$(this).attr("src","../images/home.gif");
												$(this).animate({ opacity: "1" }, 300);
											});}
		)
		$(".icons .icon_map").hover(function (){
							$(this).animate({ opacity: "0" }, 300,
											function(){
												$(this).attr("src","../images/map_hover.gif");
												$(this).animate({ opacity: "1" }, 300);
											});},
									function (){
							$(this).animate({ opacity: "0" }, 300,
											function(){
												$(this).attr("src","../images/map.gif");
												$(this).animate({ opacity: "1" }, 300);
											});}
		)
		$(".icons .icon_mail").hover(function (){
							$(this).animate({ opacity: "0" }, 300,
											function(){
												$(this).attr("src","../images/mail_hover.gif");
												$(this).animate({ opacity: "1" }, 300);
											});},
									function (){
							$(this).animate({ opacity: "0" }, 300,
											function(){
												$(this).attr("src","../images/mail.gif");
												$(this).animate({ opacity: "1" }, 300);
											});}
		)

	}
});
