function my_go1(){
	document.location.href="/index.php?option=com_content&task=view&id=6";
}

function my_go2(){
	document.location.href="/index.php?option=com_content&task=view&id=7";
}

function my_go3(){
	document.location.href="/index.php?option=com_content&task=view&id=8";
}

function my_go4(){
	document.location.href="/index.php?option=com_content&task=view&id=9";
}

function my_go5(){
	document.location.href="/index.php?option=com_content&task=view&id=20";
}

$(document).ready(function(){
	
	$("table.prod_list_table>tbody>tr").mouseenter(function(){
		$(this).children("td").css("background-color","#e8eef2");
	});
	$("table.prod_list_table>tbody>tr").mouseleave(function(){
		$(this).children("td").css("background-color","#f3f7fa");
	});
	
	$("table.prod_list_table>tbody>tr").click(function(){
		window.location.href=$(this).attr("link_to");
	});
	
});
