jQuery(document).ready(function(){

// loading content

	function load(name) {
	
		$('div.content').load('content/' +name +".php", function() {
			$('div.content').attr("id", name);		   
			if(name !== 'home'){
				$('header').attr("id", "off");
			}else{
				$('header').attr("id", null);
			}
		});
		
    }


	$.history.init(function(url) {
    	load(url == "" ? "home" : url);
	});

	$('a.load').live('click', function(e) {
        var url = $(this).attr('href');
        url = url.replace(/^.*#/, '');
        $.history.load(url);
        return false;
    });

});

