jQuery(document).ready(function(){


	/* script to hide the excerpt section in products page */

if(jQuery(".product-view .product-img-box a").length){

		var len = jQuery(".product-view .product-img-box a").attr("href").length;
		if(len > 0){
			jQuery(".product-view .product-img-box a").show();
		}
}

});

