// require jquery
jQuery(document).ready(function(){
	 jQuery("tr.tx-gcwebshop-pi1-listrow").click(
      function () {
      	// we need to make the links absolute for IE's sake
      	link = jQuery("base").attr("href") + jQuery(jQuery(this).find("td a")).attr("href");
      	window.location = link;
				return false;
			});
});
