		$(document).ready(function() {
        
        $("body").addClass("hasJavascript");
  
	$(".noJS-hide").removeClass("noJS-hide");	

	if($("#tinycarousel").length) {
		$('#tinycarousel').tinycarousel({ duration: 400 });
	}

if($(".detailRight").length) {
		
		$(".detailRight > ul > li").not(".active").click(function() {
			var temp = $(this).find("a").attr("href");
			if(temp)
				window.location.href = temp;
		});
		
		$(".detailRight > ul > li").not(".active").css("cursor", "pointer");
		
		$(".detailRight > ul > li").not(".active").hover(
			function() {
				$(this).addClass("hover");
			},
			function() {
				$(this).removeClass("hover");
			}
		);
	}
	
	
	if($(".prodImage a").length > 0) {    
	$(".prodImage a").fancybox({
    	'titleShow'     : false
    });	
}
	
});

	
