// JavaScript Document

$(document).ready(function( ) {
	$('table.pcol tr:even').addClass('even');
	$('table.pcol tbody tr').mouseover(function() {
			$(this).addClass('highlight');
			$(this).css('cursor','pointer');
	}).mouseout(function() {
			$(this).removeClass('highlight');
	});
});
