$(document).ready(function() {	
	$("a.fancyTime").fancybox();
	$("a.fancyVideo").click(function() {
		$.fancybox({
				'padding'		: 0,
				'autoScale'		: false,
				'transitionIn'	: 'none',
				'transitionOut'	: 'none',
				'title'			: this.title,
				'width'		: 680,
				'height'		: 495,
				'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
				'type'			: 'swf',
				'swf'			: {
				   	 'wmode'		: 'transparent',
					'allowfullscreen'	: 'true'
				}
			});
		return false;
	});
	$('#gigCalendar').fullCalendar({
		events: {
            url: 'https://www.google.com/calendar/feeds/77vb1p6c7lmk94lkul1kcarmg8%40group.calendar.google.com/public/basic',
            className: 'gcal-event',           // an option!
            currentTimezone: 'America/New_York' // an option!
        }
	});	
	$(".navigation").each(function(){
		var nav = $(this);
		if ($('.next-posts').text()=='' && $('.prev-posts').text()==''){
			nav.hide();
		}
	});
});
