$(function()
{

	// Bind the event.
	$(window).hashchange( function()
    {
	// Alerts every time the hash changes!
        
        var page = '/index.php';
		
        if(location.hash != '')
		{
            var page = '/pages/'+location.hash.substr(1)+'.php';
			
			document.title = location.hash.substr(1)+' | Deindruk';
        }
		else
		{
			var page = '/pages/home.php';
		}
        
        $.post(page, {}, function(data)
        {
            $('#content').html(data);
        });
	});

	// Trigger the event (useful on page load).
	$(window).hashchange();
});
