$(function() {
	bind_all();
	var now = new Date(); 
	var wedding_day = new Date(2010, 5 - 1, 15,17,31,0); 
	$('#countdown').countdown({until: wedding_day,format:'odHMS'}); 
    if(now.getTime() >= wedding_day.getTime()) {
        $('#countdown').countdown('destroy').countdown({
            since:       wedding_day, 
            format:      'yodH', 
            description: "We're Married!"
        }).css({
            paddingTop:    '0px',
            paddingBottom: '20px'
        });
    }
	$('#year').text(wedding_day.getFullYear());
	$("#twitter_widget").getTwitter({
		userName: "themrsgator",
		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').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>');
		}
	});
}

