/* WDC2009 jQuery */

$(document).ready(function(){

	var wdcDate = new Date('21 October 2009'); 
	$('.side-tickets div p').countdown({until: wdcDate, format: 'd', layout: '{dn}'});	

	$('.showbio').hover(function(){
		$(this).siblings('.clickme').show();
	},function(){
		$(this).siblings('.clickme').hide();
	});
	
	$('.page_item').hover(function(){
		$(this).children('ul').show();
	},function(){
		$(this).children('ul').hide();
	});
	
	$('.clickme').hover(function(){
		$(this).show();
	},function(){
		$(this).hide();
	});	
		
	$('.speakerimg').click(function(e){
		e.preventDefault();			
		$(this).siblings('.speakerbio').fadeIn();
		$(this).parents('.speaker').siblings('.speaker').hide();
	});
		
	$('.closespeaker').click(function(e){
		e.preventDefault();
		$(this).parents('.speakerbio').hide();
		$(this).parents('.speaker').siblings('.speaker').fadeIn();
	});

});

