$(document).ready(activateDays);

function activateDays(){

		var hide = false;
		$('a.home_calendar_popup_cell, .home_calendar_popup').hover(function() {
				var day = $(this).data('day');
				if (!day) day = this.id;
				if (hide) clearTimeout(hide);
				$('.home_calendar_popup:visible').not(this).hide();
				$('.home_calendar_popup[data-day="'+day+'"]').show();
				$('#'+day).addClass('over_day');
				$('.scroll-pane').jScrollPane({
					verticalDragMinHeight: 103,
					verticalDragMaxHeight: 103
				});
		}, function() {
				// Make timeout for this
				var day = $(this).data('day');
				if (!day) day = this.id;
				hide = setTimeout(function() { $('.home_calendar_popup[data-day="'+day+'"]').hide(); }, 100);
				$('#'+day).removeClass('over_day');
				Cufon.refresh('.home_days_calendar');
		});
	}


