// JavaScript Document

$(document).ready(init);

function init()
{
	theCountDown();
	theSlider();
}

function theCountDown()
{
	var newYear = new Date();
	newYear = new Date(newYear.getFullYear(), 6, 24);
	$('#countDown').countdown({until: newYear, format: 'odMS'
	,layout: '{o<}{on} {ol} {o>} {d<} {dn} {dl} {d>} {mnn} {ml} {snn} {sl}'
	
	});
}

function theSlider()
{
	$('#anything ul').cycle();
}
