$(function() {
	bind_all();
	var wedding_day = new Date(); 
	wedding_day = new Date(wedding_day.getFullYear(), 5 - 1, 15,17,16,0); 
	$('#countdown').countdown({until: wedding_day,format:'odHM'}); 
	$('#year').text(wedding_day.getFullYear());
	$("#twitter_widget").getTwitter({
		userName: "themissgator",
		numTweets: 1,
		loaderText: "Loading tweets...",
		slideIn: false,
		showHeading: false,
		headingText: "",
		showProfileLink: false,
		showTimestamp: true
	})
	
	$("a[rel^='lightbox']").prettyPhoto({
		showTitle:false,
		theme:'light_rounded',
		hideflash:true
	});
});

function bind_all() {
	$('.shim').live('click',function() {
		$('#more_stuff_menu').slideUp('fast');
		$(this).remove();
		return false;
	})
	$('#video_gallery,#store').die('click').live('click',function() {
		alert('Don\'t worry, this is coming soon!!');
		$(this).blur();
		return false;
	});
	$('#more_stuff').unbind('click').bind('click',function() { show_menu(); return false; });
	$('#more_stuff_menu a').unbind('click').bind('click',function() { $('#more_stuff_menu').hide(); });

}

function show_menu() {
	$('#more_stuff').blur();
	$('#more_stuff_menu').slideToggle('fast',function() {
		if($(this).is(':visible')) {
			$('body').prepend('<a href="#" class="shim">&nbsp;</div>');
		}
	});
}
