var titles = {main: "Hauptseite", preise: "Preise und Öffnungszeiten",
			  specials: "Angebote", italiener: "Ristorante", bowling: "Bowling",
			  "wir-ueber-uns": "Wir über uns", bilder: "Bildergalerie",
			  contact: "Kontakt", impressum: "Impressum" };

function toggle_fb_box() {
	$("#fb_like_box").toggle(500, function() {
		if($("#fb_like_box").css("display") != "none") {
			$('body').bind('click', function() {
				toggle_fb_box();
			});
		} else {
			$('body').unbind('click');
		}
	});
}

function loadPage(id, notAnimate) {
	if(titles[id] != undefined) {
		document.title = titles[id] + " | Cosmic Bowling Heiligenstadt";
	} else {
		document.title = "Cosmic Bowling Heiligenstadt";
	}
    if(notAnimate == false) {
        $.post("index.php", { page: id },
            function(data) {
                $('#mainContent').html(data);
            });
        return false;
    }
    
    $('#mainContent').animate({
        opacity: 0
    }, 300, function() {
        $.post("index.php", { page: id },
        function(data) {
            window.location.hash = id;
            $('#mainContent').html(data);
            $('#mainContent').animate({
                opacity: 1
            }, 500, function() {
            });
        });
    });
}
