jQuery(document).ready(function() {
	jQuery('.archiveItem').mouseenter(function(event) {
		jQuery(event.currentTarget).css("background-color", "#efefef");
	});
	jQuery('.archiveItem').mouseleave(function(event) {
		jQuery(event.currentTarget).css("background-color", "#ffffff");
	});
	
	liveButtons();
});

function liveButtons() {
	
	var currentTime = new Date();
	
	if(currentTime.getDay() == 0) {
		if(currentTime.getHours() == 20)
			jQuery('#liveButtonsContainer').show();
		else if(currentTime.getHours() == 22)
			jQuery('#liveButtonsContainer').show();
	}
	else if(currentTime.getDay() == 2) {
		if((currentTime.getHours() == 20 && currentTime.getMinutes() >= 30) || (currentTime.getHours() == 21 && currentTime.getMinutes() <= 30))
			jQuery('#liveButtonsContainer').show();
	}
} 
