jQuery(document).ready(function ()
{
	
		// reploading images
	  jQuery("<img>").attr("src", "/img/bg-page.gif");
	
	
		jQuery.getJSON('/checkUserStatus.htm', function(data)
		{
    	if (data[0].status == 'loggedin')
      {
	    	jQuery('a#login-link').attr("href", "/Txtbl/logout");
	      jQuery('a#login-link').text("Logout");
      }

		});
		
		if (location.hostname != 'txtbl.webalgorithm.com' && location.hostname != 'peek.webalgorithm.com' && location.hostname != 'crm.getpeek.com')
		{
			var pageTracker = _gat._getTracker("UA-5134921-1");
			pageTracker._trackPageview();
		}
		
});