$(document).ready(function() {
	
	$(".sub-menu").hide();

	$("#navigation li").hover(function() {
		$(this).children(".sub-menu").slideDown(200);
	}, function() {
		$(this).children(".sub-menu").hide();
	});
	
	

	$(window).scroll(function() {
        var position = $(this).scrollTop();
		var num = position;
		if(position > 200) {
		$("#buttons").css({
			position: "fixed",
			top: "100px"
			});
		} else if(position < 399) {
		$("#buttons").css({
			position: "relative",
			top: "0"
			});
			}
		});



	$('#cycle').cycle({
		fx:			'fade',
		speed:		1000, 
		timeout:	6000,
		prev:   '#prev', 
		next:   '#next'
	});
	
	/*
	
	$('#cycletext #text').cycle({
		fx:			'fade',
		speed:		1000, 
		timeout:	6000,
		prev:   '#prev', 
		next:   '#next'
	});
	
	*/
	
	
	var confrenceDate = new Date("July 14, 2011 09:00:00");
	$('#timer').countdown({
		until: confrenceDate,
		format: 'wdHM',
		labels: ['years', 'months', 'weeks', 'days', 'hours', 'minutes', 'seconds']
		});
		
	$(".red a").click(function() {
		$.scrollTo( 0, 300, function() {
			$("#speakersside").slideUp(300, function() {
				$("#twitterfeed").slideDown(300);
			});
		});
		return false;
	});
	
	$(".orange a").click(function() {
		$.scrollTo( 0, 300, function() {
			$("#twitterfeed").slideUp(300, function() {
				$("#speakersside").slideDown(300);
			});
		});
		return false;
	});

});
