	$(document).ready(function(){
		highlighter();
	});
	
	function highlighter() {
		$('.ruler tr').mouseover(function() {$(this).addClass("rulerOver");});
		$('.ruler tr').mouseout(function() {$(this).removeClass("rulerOver");});
		$('.ruler tr').click(function() { if ($(this).children('.moreinfolink').children('a').attr("href")) top.location = $(this).children('.moreinfolink').children('a').attr("href");});
		$('.ruler tr').addClass("ruler_tr");
	}