$(function() {
	$("#hero_graphic").cycle(
		{
			fx: "fade",
			speed: 1600,
			timeout: 8000
		});
		
	$(".sponsors .content-view-line").click(function() {
		if($(this).attr("rel") != undefined) {
			window.open($(this).attr("rel"));
		}
		
	});
	$("#countdown").countdown({
		until: new Date(2010, 6-1, 26)
	})
})
