$(document).ready(function () {
							
	function showCountdown(){
		$("#xmp-message").animate({
			padding:'5px',
			height: '20px'
		 }, 1000);	
	}
	
	function hideCountdown(){
		$("#xmp-message").animate({
			padding:'0px',
			height: '0px'
		 }, 1000);	
	}
	window.setTimeout(function(){
		showCountdown();
	}, 1000);
	
	window.setTimeout(function(){
		hideCountdown();
	}, 5000);
	
	loadTweets();
	
	
});

function showOneTimeAlert(inAlertText, alertKey){
	var hasCookie = $.cookie(alertKey);
	if(!hasCookie){
		alert(inAlertText);
		$.cookie(alertKey, 'alerted', { 
				 expires: 200, path: '/', domain: 'huskerjunction.com', secure: false 
		});
	}
}