$(document).ready(function(){

	$(".tab").hide();


	$("#productTabs a").each(function(){
		var linkParent = $(this).parent();
		var itemID = $(this).attr("href");

		$(itemID).contents().each(function() {
			if(this.nodeType == 8) {
				linkParent.remove();
				$(itemID).remove();
			}
		});
	
	});
	

	$("#productTabs a").click(function(){
		$("#productTabs a").removeClass("selected");
		$(".tab").hide();
		$(this).addClass("selected");
		var itemID = $(this).attr("href");
		$(itemID).fadeIn();
		return false;
	});


	
	$("#productTabs a").eq(0).trigger("click");

	

	if($.browser.msie && $.browser.version.substring(0,1) == "7") 
	{

		// silly browser!
	
	} else {
	
	
		$(".relatedItems li").hover(function(){
		
			if($(this).find(".cloner").length>0)
				return;	
					
					
			$("<div/>", {
				"class": "cloner",
				html: $(this).html()
			}).appendTo(this);
			
			$(".cloner").animate({left: "-40px", top: "-20px"}, 220).find("img").animate({width: "308px", height: "123px"}, 220);
			
			
		},function(){
	
			$(".cloner").animate({left: 0, top: 0}, 120).find("img").animate({width: "228px", height: "91px"}, 120, function(){
				$(this).parent().parent().remove();
			});
				
		});

	
	}
	
});

