//calling function show_description('shop_product_###PRODUCT_UID###')

function show_description(id){
	if($("#"+id+" .shop_productDescription").is(":hidden")) {
		$("#"+id+" .shop_productDescription").show();
		$("#"+id+" .product_imageHigh").show();
		$("#"+id+" .product_imageLow").hide();
	}else{
		$("div#"+id+" div.shop_productDescription").hide();
		$("#"+id+" .product_imageHigh").hide();
		$("#"+id+" .product_imageLow").show();
	}
}

$(function(){
	$(".shop_productDescription").hide();
	$(".product_imageHigh").hide();
});