$(document).ready(function(){

	$('#banner').css({'display' : 'none'}).fadeIn(1500);

	$(".logo, .promo, #banner_bottom span img").hover(function(){
		$(this).fadeTo("fast", 0.7);
	},function(){
		$(this).fadeTo("fast", 1.0);
	});
	
	$("#watch-video, #video-contest").hover(function(){
		$(this).fadeTo("fast", 0.85);
	},function(){
		$(this).fadeTo("fast", 1.0);
	});
	
	$('#slideshow').cycle();
	
	$('#watch-video').click(function () {
		//$(this).hide("slow");
		$("#banner .frame").show("slow");
	});
	
	// Let it snow!!
	$(document).snowfall({
		shadow : true,
		flakeIndex: -500,
		flakeCount:70,
		minSize : 1,
		maxSize : 3,
		minSpeed : 2,
		maxSpeed : 3 
	}); 
	
 });
