$(document).ready(function(){
	$('#phototour').click(function (e) { 
		e.preventDefault();
		if($('#featured_wrapper').length)
		{
			showContent();
		}
		else
		{
			$.get('/gallery.php', {}, function(data){
				$('body').prepend(data);
				showContent();				
			});	
		}
    });
	
});

function showContent() {
	$('#featured_content').fadeIn('slow');
	
	$('#close').click(hideContent);
}

function hideContent()
{
	$('#featured_content').fadeOut('slow');
}