$(document).ready(function() {

	$(document).pngFix();

	$("#head-menu a[title='" + $("body").attr("alt") + "']").addClass("active");
	$("#head-menu a[class!='active']")
		.hoverIntent(
			function() { $(this).siblings(".ani").animate({height: "41px"}, 200 ); } ,
			function() { $(this).siblings(".ani").animate({height: "0px"}, 200, function() { $(this).hide(); }); }
		);
		
	// console.log($.browser.version.substr(0,3));
	
	if
	(
		!($.browser.msie && $.browser.version.substr(0,1) <= 7) &&
		!($.browser.mozilla && $.browser.version.substr(0,5) <= '1.9.0')
	)
	{
		// console.log("hello");
		
		$("#phone_number, .box-news").dropShadow({left:0,top:0,blur:3,opacity:.5, color: "black"});
		$("#left-menu li, .sidelink li").dropShadow({left:0,top:0,blur:2,opacity:.9, color: "black"});
		//$("#stage").dropShadow({left:0,top:0,blur:5,opacity:.9, color: "black"});
		$(".layoutD #body-content").dropShadow({left:0,top:0,blur:2,opacity:.5, color: "black"});
		$("#wrap-logo").dropShadow({left:0,top:0,blur:4,opacity:.5, color: "black"});
	}
	
	$(".gallery-images ul li a").lightBox();		
	$(".gallery-images li img")
		.css({opacity:.5})
		.mouseenter(function() { $(this).animate({opacity: 1},300); })
		.mouseleave(function() { $(this).animate({opacity:.5},300); });

});