$(document).ready(parse);
var active = 'home';
var lock = 0;

function getQuick(hash)
{
	if(!lock)
		$('#container').html( $('#hidden #' + hash).html());
}
function getContent(hash)
{
	if(hash)
	{
		
		$('#container div').fadeOut('fast', function(){
			$('#container').html( $('#hidden #' + hash).html());
			$('#container div').hide();
			$('#container div').fadeIn('fast');
		});
		active = hash;
		lock = 0;
	}
}


function parse()
{
	$('#hidden').hide();
	getQuick(active);
	$.historyInit(getContent);
	$('a[@rel=in]').click( function(){

		if(navigator.userAgent.indexOf('MSIE 7.0') != -1)
			getContent(this.hash.substr(1));

	});

}
