$(document).ready(function(){
	clickProductRow();

});

/* make the whole row clickable in product listing */
function clickProductRow(){

	$('table.tbl_products tbody tr').click( function(){
		var link = $(this).find('td:eq(0) a').attr('href'); //find link in first td
		if(link != '')
		{
			document.location =link;
		}
	});

}