$(document).ready(function(){
	$('a.project-ajax').live('click', function(){
		$.ajax({
			url: $(this).attr('href'),
			method: 'GET',
			dataType: 'html',
			success: function(data){
				
				$('#content').append('<div id="hide"></div>');
				$('#hide').css('display', 'none');
				$('#hide').html(data);
				
				$('#project-nav').html($('#hide #project-nav').html());
				$('#photo-nav').html($('#hide #photo-nav').html());
				
				$('#project-content').fadeOut('normal', function(){
					$('#project-content').html($('#hide #project-content').html());
					$('#hide').remove();
					$('#site').height($(window).height());
					$('#project-content').fadeIn('normal', function(){
						initBackground();
					});
				});

			},
		}) ;
		 return false;
	});
});
