
$(document).ready(function()
{
   //ajaxTime.php is called every second to get time from server
   var refreshId = setInterval(function()
   {
     $('#loginright').load('includes/processor.php');
   }, 1000);

});

