if (!($.browser.msie && $.browser.version == "7.0")) {
	$(document).ready(function(){
		
		/* schmuck: header ausblenden 
		$("#schmuck .header").delay(200).mouseleave(function(){
		  $(this).animate({top: "-70"}, "slow");
		  $("#schmuck .header ul").animate({opacity: "hide"}, "fast");
		  $("#schmuck .menu-slide").animate({opacity: "show"}, "fast");
		});
		
		$("#schmuck .menu-slide").hover(function(){
		  $("#schmuck .header").animate({top: "0"}, "slow");
		  $("#schmuck .header ul").animate({opacity: "show"}, "slow");
		  $("#schmuck .menu-slide").animate({opacity: "hide"}, "fast");
		});
		*/
		
		/* home: title animation*/
		//$(".dotted").delay(800).slideToggle("slow");
		$("#marrakesch").delay(1600).animate({top: "0", opacity: "show"}, "slow");
		
		$("#marrakesch").hover(function(){
		  $("#marrakesch img").stop().animate({left: "-15"}, "slow");
		  $("#marrakesch span").stop().animate({left: "15"}, "slow");
		}, function() {
		  $("#marrakesch img").stop().animate({left: "0"}, "slow");
		  $("#marrakesch span").stop().animate({left: "0"}, "slow");
		});
		
	});
}
