

$(function(){
  
  // tabs on product page
  $(".prodTab:first").addClass('activ');
  $(".tabContent:not(:first)").hide();
  $(".tabContent").eq(0).show();
  $(".prodTab").click(function(){
  	$(".prodTab").removeClass('activ');
	$(this).addClass('activ');
	$(".tabContent").hide();
	$("#"+$(this).attr('target')).show();
  });
  
  $("#reviewsContent").hide();
  $("#viewReviews").click(function(){$("#reviewsContent").toggle();});
  $(".productIcon").tooltip( {showURL: false}  );
  
  $(".dpimages-icons-box a").hover(function(){
							$("#imageCaption").text($(this).find("img").attr("alt"));	 
							if($("#imageCaption").text() != "") {$("#imageCaption").show();}			
											}, function(){ $("#imageCaption").hide();});
  $(".image-box").hover(function(){ if($("#imageCaption").text() != "") {$("#imageCaption").show();} }, function(){ $("#imageCaption").hide() });
  //prevent right click.
  $(document).bind("contextmenu",function(e){ return false;  });
  
  if($(".productIcon").size() == 0 && $("#productIcons").size()!=0 ) {$("#productIcons").hide(); }
  
  /*if($("#pm4").size() > 0 ) { 
  
  	if($(".flc-shippings input[value=179]").size() == 0){  
		$("#pm4").parent().parent().hide(); 
		$("#pm4").attr("disabled","disabled");
		
	} else {
		$("#pm52").parent().parent().hide(); 
		$("#pm52").attr("disabled","disabled");
		$("#pm20").parent().parent().hide();
		$("#pm20").attr("disabled","disabled");
		$("#pm4").attr("checked","checked");
		$(".flc-shippings .currency").hide();
	}   
  
  }*/

});
