

if(jquery == 1) {
	
	
	function showCard() {
		
		if(jquery == 1) {
			$('#addShop').fadeIn("slow");
			setTimeout("$('#addShop').fadeOut(\"slow\");", 10000);
		}
	}
	
	function showP(id) {
		
		$("#product_"+id).slideDown("normal");
		$("#product_"+id).removeClass("selected");
		
		$(".shopList .pD").each(function(){
			if ( $(this).hasClass("selected") ) {
				$(this).slideUp("normal");
				$(this).removeClass("selected");
			}
			
		});
		
		$("#product_"+id).addClass("selected");
			
	}
	
	function showRemove(id) {
		
		$("#productI_"+id).toggle();
		$("#productLG_"+id).toggle();
		$("#productL2_"+id).css({ "opacity" : 1 });
	}
	
	function restoreRemove(id) {
		
		$("#productI_"+id).toggle();
		$("#productLG_"+id).toggle();
		$("#productL2_"+id).css({ "opacity" : 0.5 });
		
	}
	
	function closeP(id) {
		
		$("#product_"+id).slideUp("normal");
		$("#product_"+id).removeClass("selected");

	}
	
	$(document).ready(function () {
		$(".videoTabs a").click(function() {

			id = this.id;
			
			$(".videoTabs a").each(function(){
		       	$("#"+this.id).removeClass("activeVideo");  
			});
			        	
			$("#"+id).addClass("activeVideo");  
			
			$("#videoPlayer").html($("#video_"+id).html());
			
			
		});
	});
		
	    	
	   
	


}