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

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

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