/* JQuery Loading, with hash
Copyright Mevinv 2010*/
$(document).ready(function(){
	var hash = window.location.hash.substr(1);  
    var href = $('#links a').each(function(){  
        var href = $(this).attr('href');  
        if(hash==href.substr(0,href.length-4)){  
		$("#spacer").attr('id',"smallspacer"); 	
		$("#content").attr('id',"fullcontent");
            var toLoad = hash+'.php #fullcontent';  
            $('#fullcontent').load(toLoad);
        }  
    });  
	 $('#links a').click(function(){  
  	$("#spacer").attr('id',"smallspacer"); 	
	$("#content").attr('id',"fullcontent");
    var toLoad = $(this).attr('href')+' #fullcontent';  
    $('#fullcontent').hide('fast',loadContent);   
    window.location.hash = $(this).attr('href').substr(0,$(this).attr('href').length-4);  
    function loadContent() {  
        $('#fullcontent').load(toLoad,'',showNewContent())  
    }  
    function showNewContent() {  
        $('#fullcontent').show('normal');  
    }  
    return false;  
  
    });  
						  
						   });
