// JavaScript Document

$(document).ready( function(){

	// remove rules="all" in tables
	$('.sResultsTable').attr({rules : "none"});
	

	 $('.conshelpImg').hover(function(){
	 	 $('.helpPopup').fadeIn('fast');	
	 }, function(){
		 $('.helpPopup').fadeOut('fast');	
	 });
	 
	  $('.keywordhelpImg').hover(function(){
	 	 $('.keywordhelpPopup').fadeIn('fast');	
	 }, function(){
		 $('.keywordhelpPopup').fadeOut('fast');	
	 });
	 
	 $('.pagerhelpImg').hover(function(){
	 	 $('.pagerhelpFrame').fadeIn('fast');	
	 }, function(){
		 $('.pagerhelpFrame').fadeOut('fast');	
	 });
	 
	 $('.referalhelpImg').hover(function(){
	 	 $('.referalhelpFrame').fadeIn('fast');	
	 }, function(){
		 $('.referalhelpFrame').fadeOut('fast');	
	 });
	 
	 $('.getRefhelpImg').hover(function(){
	 	 $('.getRefhelpFrame').fadeIn('fast');	
	 }, function(){
		 $('.getRefhelpFrame').fadeOut('fast');	
	 });
	 
});

