$(document).ready(function(){

	$('#countdown').countdown({
		until: new Date(2010, 8, 10, 12, 0, 0),
		labels: ['', '', '', '', '', '', ''],
		labels1: ['', '', '', '', '', '', ''],
		format: 'DHM',
		timezone: 0
	});

	getTwitters('tweet', { 
	  id: 'thesify', 
	  count: 1, 
	  enableLinks: true, 
	  ignoreReplies: true, 
	  clearContents: true,
	  template: '"%text%" <a class="time" href="http://twitter.com/%user_screen_name%/statuses/%id%/">%time%</a>'
	});
	
	$('.email').focus(function(){
		if($(this).val() == 'me@mydomain.com')
			$(this).val('');
	});
});


