$(document).ready(function(){

	$(".product-overview td").click(function(){
	  window.location=$(this).find("a").attr("href"); return false;
	});

	$(".product").click(function(){
	  window.location=$(this).find("a").attr("href"); return false;
	});

	$(".newsticker p").click(function(){
	  window.location=$(this).find("a").attr("href"); return false;
	});

});