/*
 * Stand Up PFestival
 * http://www.pfestival.de
 *
 * Author: Gedankengut.de
 * Date: 2011-12
 */
 
$(document).ready(function() {
	
	// Countdown
	liftoffTime = new Date(2012, 05, 09, 14, 00, 00);
	$('#countdown').countdown({until: liftoffTime, format: 'dHMS'});
	
	// Scrollable Teaser
	var root = $('#teaser').scrollable({circular: true, mousewheel: false}).navigator().autoscroll({interval: 5000});
	
	// Lightbox
	$('a[rel^="lightbox"]').lightBox();
	
});
