
$(document).ready(function(){
	initRows()
});

function initRows(){
	$("#companiesTable tbody tr").hover(onOverRowItem, onOutRowItem); 
	$("#companiesTable tbody tr").bind("click", onRowItemClicked);
}

function onRowItemClicked(e){
	window.location=$(this).find("a").attr("href"); 
	return false;
}

function onOverRowItem(){
	 $(this).css({ "background-color":"#f0f4dd", "color":"#664422" });
}

function onOutRowItem() { 
	 $(this).css({ "background-color":"#FFFFFF", "color":"#333333" });
}
	