$(document).ready(function () {	
	$('.downloads table tr.data').hover(
		function () {
			$(this).css('cursor','pointer');
			$('#messenger').html("<em>Click " + $(this).find('td a').html() + " to download form.</em>");
			$(this).css('background','#eee');
		  },
		  function () {
			$(this).css('cursor','defualt');
			$('#messenger').html('');
			$(this).css('background','#fff');
		  }
	);
	
	$('#table-data table tr td.right').hover(
		function () {
			$(this).css('background','#eee');
		  },
		  function () {
			$(this).css('background','#fff');
		  }
	);
	
	$('.downloads table tr.download-pdf').hover(
		function () {
			$(this).css('cursor','pointer');
			$('#messenger').html("<em>Click to download " + $(this).find('td a').html() + "</em>");
			$(this).find('td').find('div').html('<img src="../images/Download.png" height="16px" width="16px" alt="" />');
			$(this).css('background','#eee');
		  },
		  function () {
			$(this).css('cursor','defualt');
			$('#messenger').html('');
			$(this).find('td').find('div').html('');
			$(this).css('background','#fff');
		  }
	);
});
function MM_openBrWindow(theURL,winName,features) 
{
  window.open(theURL,winName,features);
}
function hilite(dom)
{
	$('#table-data table tr td').css('background','#fff');
	$(dom + 'r').find('td').css('background','#eee');
}
