$(document).ready(function(){

	$(".ref-table tr").mouseover(function(){
		$(this).addClass("ref-hover");
	});
	
	$(".ref-table tr").mouseout(function(){
		$(this).removeClass("ref-hover");
	});
	
	$('.lbox').lightBox(); 
	
});
