   if (!$.browser.msie){







$(document).ready(function() {
	$("#body_home").hide();
	$("#body_home").slideDown(1600);					   
	$("#slider").hide();
	$("#slider").fadeIn(1600);
	
	
	$(".teaserh").removeClass("teaserh");
	$("a.teaser img").hover(
	function () {
		$(this).effect("size", { to: { width: 200, height: 174 }, origin: ['bottom','center'] }, 240, function() {	
			$(this).css("margin-left","-5px").css("margin-top","-9px");
			});
	},
	function () {
		$(this).effect("size", { to: { width: 190, height: 165 }, origin: ['bottom','center'] }, 180,function() {
			$(this).removeAttr("style");
		});
	}
	);
});








   }
