﻿
$(document).ready(function(){
   //$('#grants')[0].style.visibility = 'visible';
	$('#grants').fadeIn('slow');
	setTimeout(LoadGrants, 5000);	
 });


function LoadGrants()
{
	$('#grants').fadeOut('slow', function(){$("#grantscont").load('index.php', 'ajax=grants', ShowGrants);});
}

function ShowGrants()
{
	$('#grants').fadeIn('slow');
	setTimeout(LoadGrants, 5000);	
}
