$(document).ready(function() {
if(!/msie/i.test(navigator.userAgent)&&shadow_visible)
	$("#tab_ul li").append('<img class="shadow" src="'+tab_shadow+'" width="70" height="23" alt="" />');

$("#tab_ul li").hover(function() {
	var e = this;
	$(e).find("a").stop().animate({ marginTop: "-14px", marginLeft: "12px" }, 250, function() {
		$(e).find("a").animate({ marginTop: "-10px" }, 250);
	});
	$(e).find("img.shadow").stop().animate({ width: "80%", height: "20px", marginLeft: "20px", opacity: 0.2 }, 250);
},function(){
	var e = this;
	$(e).find("a").stop().animate({ marginTop: "4px", marginLeft: "26px" }, 250, function() {
		$(e).find("a").animate({ marginTop: "0px" }, 250);
	});
	$(e).find("img.shadow").stop().animate({ width: "100%", height: "27px", marginLeft: "16px", opacity: 0.5 }, 250);
});
$("#tab_ul").css({"right": -40 + tab_x_offset + "px"})
$("#tab_ul").css({"top": tab_y_pos})
$("#tab_ul li").find("img.shadow").css({"bottom": 0 + shadow_y_offset + "px"})
$("#tab_ul li").find("img.shadow").css({"left": 0 + shadow_x_offset + "px"})
$("#tab_ul li").find("a").animate({ marginTop: "0px", marginLeft: "26px" }, 0)
$("#tab_ul li").find("img.shadow").animate({ opacity: 0.5, marginLeft: "16px" }, 0)

$("#tab_ul li").find("a").fancybox({
'width'	 : 660,
'height'	 : '75%',
'autoScale'	 : false,
'transitionIn'	 : 'none',
'transitionOut'	 : 'none',
'type'	 : 'iframe',
'overlayOpacity'	: '0.6',
'overlayColor'	 : '#000'
});
});

