$(document).ready(function(){
	
	$('.signup-form input').focus(function(){ 
		$(this).val(''); 
	}).blur(function(){
		if($(this).val==''){ 
			$(this).val('Your Email Address...'); 
		}

	});
	
	$('#featured-candidate').cycle();
	
	var today = new Date();
	var count_to = new Date(2012, 11, 2);
	var one_day = 1000*60*60*24;
	var date_diff = Math.ceil( (count_to.getTime() - today.getTime() ) / one_day );
	//$('#countdown').text(date_diff);
	
	// Initiate Countdown
	$('#countdown_dashboard').countDown({
		targetDate: {
			'day': 		06,
			'month': 	11,
			'year': 	2012,
			'hour': 	20,
			'min': 		0,
			'sec': 		0
		},
		omitWeeks: true
		
	});
});
