// JavaScript Document

$(document).ready(function(){
	$("a.btn-more-info").hide();
	$("#list tr").hover(function(){
		//$(this).css("background","#280000");
		$(this).addClass("row-hover");
	},function(){
		$(this).removeClass("row-hover");
	}).click(function(){
		window.location.href = $(this).find("a.btn-more-info").attr("href");
	});
});
