$(document).ready(function() {	
						   
	var hash = window.location.hash.substr(1);
	var href = $('#nav li a').each(function(){
		var href = $(this).attr('href');
		if(hash==href.substr(0,href.length-5)){
			var toLoad = hash+'.html #content';
			$('#content').load(toLoad)
		}											
	});
	
	$('#nav li a, #bottom-nav a').click(function(){
								  
	var toLoad = $(this).attr('href')+' #content';
	var toLoadheader =$(this).attr('href')+' #header';
		$(this).parent().siblings().removeClass("active");
		$(this).parent().addClass("active");
		$('#content').fadeOut('fast',loadContent);
		$('#intro').fadeOut('fast', loadContent);
		window.location.hash = $(this).attr('href').substr(0,$(this).attr('href').length-5);
	function loadContent() {
		$('#content-wrap').load(toLoad,'', showNewContent)
		$('#header').load(toLoadheader, '',showNewContent)};
	function showNewContent() {
    	$('#content').fadeIn('normal');
		$('#intro').fadeIn('normal');
    }

		return false;
		
	});
	
	$('#list').livequery(function(){
		$('#list').accordion({header: 'h3.project-title'});
	});    
	
	$('#about').livequery(function() {
        $('#about > ul').tabs();           
    });
	
	$('#contact').livequery(function(){ 
			   $('textarea[title!=""], input[title!=""]').hint();
	});

});