function changeShowing(day) {
	$.ajax({
  		url: '/js/home.showing.js?show='+day,
  		success: function(data) {
    		$('#showingtonight-holder').html(data);
    		switch(day) {
    			case 'today':
    				$('#tab-tonight').addClass('active');
    				$('#tab-tomorrow').removeClass('active');
    				$('#tab-week').removeClass('active');
    				$('#tab-month').removeClass('active');
    				break;
    			case 'tomorrow':
    				$('#tab-tonight').removeClass('active');
    				$('#tab-tomorrow').addClass('active');
    				$('#tab-week').removeClass('active');
    				$('#tab-month').removeClass('active');
    				break;
    			case 'week':
    				$('#tab-tonight').removeClass('active');
    				$('#tab-tomorrow').removeClass('active');
    				$('#tab-week').addClass('active');
    				$('#tab-month').removeClass('active');
    				break;
    			case 'month':
    				$('#tab-tonight').removeClass('active');
    				$('#tab-tomorrow').removeClass('active');
    				$('#tab-week').removeClass('active');
    				$('#tab-month').addClass('active');	
    				break;
    		}
  		}
	});
}

function hideBetaMessage() {
	$('#betamessage').hide();
}
