// JavaScript Document

//Countdown
$(document).ready(function () {
	var today = new Date().getTime();
	today = today/1000;
	today = Math.round(today);
	var timeLeft = 1308837600 - today;
	$('.numbers').countdown({until: timeLeft, compact: true, layout: '{dn} d | {hn} h | {mn} m | {sn} s'});
});

// Get Tweets
getTwitters('tweets', {
	id: 'hkfestival', 
	prefix: '', 
	clearContents: true, // leave the original message in place
	count: 3, 
	withFriends: true,
	ignoreReplies: false,
	newwindow: true
});

//Banner Fade
$(document).ready(function(){ 
	$('.rotator').innerfade({ 
		animationtype: 'fade',
		speed: 500, 
		timeout: 4000, 
		type: 'sequence', 
		containerheight: '379px' 
	});
	$('.bandsRotator').innerfade({ 
		animationtype: 'fade',
		speed: 500, 
		timeout: 4000, 
		type: 'sequence', 
		containerheight: '119px' 
	});
});


