

var ready = 0;
function myfunctions_start()
{
	
	setTimeout("set_ready_on()", 2250);
	exchange_links();
	
	
	
}
function ajax(box, mySrc, myPage)
{
	//alert(myPage);
	var myAjax = new Ajax.Updater(box, mySrc, {method: 'get', parameters: "?p=" + myPage});
}

function change_navbar(category)
{
	

}

function set_ready_on()
{
	ready = 1;
}

function load_page(myPage)
{
	
	if (ready == 1)
	{
		ready = 0;
		setTimeout("set_ready_on()", 2250);
		
		//mainwindow
		opacity('mainwindow', 100, 0, 800);
		setTimeout("ajax('mainwindow', '../includes/ajax_main.inc.php', '" + myPage + "');", 800);
		setTimeout("opacity('mainwindow', 0, 100, 1000)", 1200);
		
		//navbar
		//opacity('navbar', 100, 0, 800);
		setTimeout("ajax('navbar', '../includes/ajax_navbar.inc.php', '" + myPage + "');", 800);
		//setTimeout("opacity('navbar', 0, 100, 1000)", 1200);
		setTimeout("exchange_links();", 1200);
		
		
	}
}
function exchange_links()
{
	
	document.getElementById('c_HOME').setAttribute('onclick', "load_page('HOME');");
document.getElementById('c_HOME').removeAttribute('href');
document.getElementById('c_GALERIE').setAttribute('onclick', "load_page('GALERIE');");
document.getElementById('c_GALERIE').removeAttribute('href');
document.getElementById('c_TEAM').setAttribute('onclick', "load_page('TEAM');");
document.getElementById('c_TEAM').removeAttribute('href');
document.getElementById('c_REFERENZEN').setAttribute('onclick', "load_page('REFERENZEN');");
document.getElementById('c_REFERENZEN').removeAttribute('href');
document.getElementById('c_KONTAKT').setAttribute('onclick', "load_page('KONTAKT');");
document.getElementById('c_KONTAKT').removeAttribute('href');

if (document.getElementById('p_HOME')) {document.getElementById('p_HOME').setAttribute('onclick', "load_page('HOME');");}
if (document.getElementById('p_HOME')) {document.getElementById('p_HOME').removeAttribute('href');}
if (document.getElementById('p_[3]')) {document.getElementById('p_[3]').setAttribute('onclick', "load_page('[3]');");}
if (document.getElementById('p_[3]')) {document.getElementById('p_[3]').removeAttribute('href');}
if (document.getElementById('p_GALERIE')) {document.getElementById('p_GALERIE').setAttribute('onclick', "load_page('GALERIE');");}
if (document.getElementById('p_GALERIE')) {document.getElementById('p_GALERIE').removeAttribute('href');}
if (document.getElementById('p_TEAM')) {document.getElementById('p_TEAM').setAttribute('onclick', "load_page('TEAM');");}
if (document.getElementById('p_TEAM')) {document.getElementById('p_TEAM').removeAttribute('href');}
if (document.getElementById('p_REFERENZEN')) {document.getElementById('p_REFERENZEN').setAttribute('onclick', "load_page('REFERENZEN');");}
if (document.getElementById('p_REFERENZEN')) {document.getElementById('p_REFERENZEN').removeAttribute('href');}
if (document.getElementById('p_KONTAKT')) {document.getElementById('p_KONTAKT').setAttribute('onclick', "load_page('KONTAKT');");}
if (document.getElementById('p_KONTAKT')) {document.getElementById('p_KONTAKT').removeAttribute('href');}
if (document.getElementById('p_[2]')) {document.getElementById('p_[2]').setAttribute('onclick', "load_page('[2]');");}
if (document.getElementById('p_[2]')) {document.getElementById('p_[2]').removeAttribute('href');}
if (document.getElementById('p_[1]')) {document.getElementById('p_[1]').setAttribute('onclick', "load_page('[1]');");}
if (document.getElementById('p_[1]')) {document.getElementById('p_[1]').removeAttribute('href');}
	

}


