var $j = jQuery.noConflict();
$j(function()
{     
   
//  Developed by Roshan Bhattarai 
//  Visit http://roshanbh.com.np for this script and more.
//  This notice MUST stay intact for legal use

	//these two line adds the color to each different row
   $j("#restaurant tr:even, #companies-list tr:even, #organizations-list tr:even").addClass("eventr");;
   $j("#restaurant tr:odd, #companies-list tr:odd, #organizations-list tr:odd").addClass("oddtr");;
   //handle the mouseover , mouseout and click event
   $j("#restaurant tr, #companies-list tr, #organizations-list tr").mouseover(function() {$j(this).addClass("trover");}).mouseout(function() 								{$j(this).removeClass("trover");}).click(function() {$j(this).toggleClass("trclick");}); 
   });
