// this script is for the block link divs
$(document).ready(function(){
						   
	$(".prod-list").click(function(){
    	window.location=$(this).find("a").attr("href");return false;
	});

}); //close doc ready

// this script is for the block link divs
$(document).ready(function(){
						   
	$(".produc t-util-img").click(function(){
    	window.location=$(this).find("a").attr("href");return false;
	});

}); //close doc ready






// and script is for show hide divs

function change() {

if (document.getElementById("showhide").style.display == "none") {

document.getElementById("showhide").style.display = "block";

document.getElementById("view-accessories").innerHTML = "<a href='javascript:change();'>Hide Accessories</a>";

} else {

document.getElementById("showhide").style.display = "none";

document.getElementById("view-accessories").innerHTML = "<a href='javascript:change();'>Show Accessories</a>";

}

}