$(document).ready (function() {
	$('textarea#message').autogrow();
		
		$('#search-box input[type="text"]').addClass("search-default");
		$('#search-box input[type="text"]').focus(function() {  
	    $(this).removeClass("search-default").addClass("search-focus");
	});  
	$('#search-box input[type="text"]').blur(function() {  
	    $(this).removeClass("search-focus").addClass("search-default");; 
	});
	
	$("div#smallScroller").smoothDivScroll({mouseDownSpeedBooster: 2, autoScrollOnStart: true, visibleHotSpots: "always"});
	
	$("#time-current").show();
	$("#time-0408").hide();
	$("#time-0204").hide();
	$("#time-0102").hide();
	$("#time-9600").hide();
	$("#time-81").hide();
	
});

// Put us on the top window so we arent iframed...
if(top!=self){top.location.replace(self.location.href);}