$(function() {
		$("#Verkauft").hide();
		$("#Vermietet2").hide();
		$("#Vermietet3").hide();
	});

$(document).ready(function() 
	  {
		jQuery.each(jQuery.browser, function(i) {
		if($.browser.msie){
		$("#Navigation1").mouseover(function() {
		$("#Verkauft").show(1);
		  });
		$("#Navigation2").mouseover(function() {
			$("#Vermietet2").show(1);
			$("#Back").show(1);
		  });
		$("#Navigation3").mouseover(function() {
			$("#Vermietet3").show(1);
		  });
		}else{
		$("#Navigation1").mouseover(function() {
			$("#Verkauft").animate({opacity: "show"}, "slow");
		  });
		$("#Navigation2").mouseover(function() {
			$("#Vermietet2").animate({opacity: "show"}, "slow");
			$("#Back").animate({opacity: "show"}, "slow");
		  });
		$("#Navigation3").mouseover(function() {
			$("#Vermietet3").animate({opacity: "show"}, "slow");
		  });
		}
		});
		
		jQuery.each(jQuery.browser, function(i) {
		if($.browser.msie){
		$("#Navigation1").mouseout(function() {
			$("#Verkauft").hide(1);
		  });
		$("#Back").mouseover(function() {
			$("#Vermietet2").hide(1);
			$("#Back").hide(1);
		  });
		$("#Back a").click(function() {
			$("#Vermietet2").hide(1);
			$("#Back").hide(1);
		  });
		$("#Navigation3").mouseout(function() {
			$("#Vermietet3").hide(1);
		  });
		}else{
		$("#Navigation1").mouseout(function() {
			$("#Verkauft").animate({opacity: "hide"}, "slow");
		  });
		$("#Back").mouseover(function() {
			$("#Vermietet2").animate({opacity: "hide"}, "slow");
			$("#Back").animate({opacity: "hide"}, "slow");
		  });
		$("#Vermietet2 a").click(function() {
			$("#Vermietet2").animate({opacity: "hide"}, "slow");
			$("#Back").animate({opacity: "hide"}, "slow");
		  });
		$("#Navigation3").mouseout(function() {
			$("#Vermietet3").animate({opacity: "hide"}, "slow");
		  });
		}
		});
});