$(function() {
	$("#photo_upload").fancybox({overlayColor:"#111",padding:0});
	$("#forgot_password").fancybox({overlayColor:"#111",padding:0});
	$("#change_password").fancybox({overlayColor:"#111",padding:0});
	$(".popup").fancybox({overlayColor:"#111",padding:0});
	$("#join_form,#edit_form,#register_form").validate();
	
	setInterval(function() {
		var time = Math.round((new Date()).getTime() / 1000),
		eventTime = Math.round((new Date("May 13 2010").getTime()) / 1000),
		difference = eventTime - time,
		secs = difference % 60,
		d1 = (difference - secs) / 60,
		minutes = d1 % 60;
		
		d1 = (d1 - minutes) / 60;
		var hours = Math.round(((d1 - minutes) / 60) % 24);
		var days = Math.round((d1 - hours) / 24);
		$("#countdown").text(days + " days, " + hours + " hours,  " + minutes + " min, " + secs + " secs");
	},1000);
	
	/*var $twitter = $("#twitter");
	if($twitter.length > 0) {
		var handle = $twitter.attr("title");
		$.getJSON("http://twitter.com/statuses/user_timeline/" + handle + ".json?callback=?",function(res) {
			$twitter.html("<b>On Twitter: </b>" + res[0]['text']);
		});
	}*/
});