$(document).ready(function(){
	if ($('#cont').height() < 1600 )
		$('#cont').height(1600);
	
	
	$('ul.sf-menu').superfish();
	$('ul.sf-vertical').superfish();
	$("#naptar").datepicker({
		
		onSelect: function(date) {
			document.location.href= base_url+"events/"+date;
		
		},
		beforeShowDay: dsDays
	
	});
	
    $('#carousel').cycle({
		fx: 'fade'
	});
	
	function dsDays(date) {
		for (i = 0; i < Days.length; i++) {
			if (date.getMonth() == Days[i][0] - 1 && date.getDate() == Days[i][1]) {
				return [true, 'trackday'];
			}
		}
		return [false, ''];
	}

});
