// JavaScript Document

var global_home = 0;
var global_live = 0;
var global_about = 0;
var global_video = 0;
var global_bio = 0;
var global_music = 0;
var global_pictures = 0;
var global_contact = 0;


function createXMLHttpRequest() {
var ua;
if(window.XMLHttpRequest) {
	try {
  	ua = new XMLHttpRequest();
	} catch(e) { 
  	ua = false;
	}
  } else if(window.ActiveXObject) {
	try {
  	ua = new ActiveXObject("Microsoft.XMLHTTP");
	} catch(e) {
  	ua = false;
	}
  }
  return ua;
}

function init() {
	
		document.getElementById('divaktuelles').style.display = 'none';
		document.getElementById('divimagecontact').innerHTML = "<img onmouseout='MM_swapImgRestore()' onmouseover=MM_swapImage('imagecontact','','images/nav/btn_contact_o.png') src='images/nav/btn_contact.png' name='imagecontact' onclick='ClickContact();' width='300' height='29' border='0' id='imagecontact' />";
		document.getElementById('divimagelive').innerHTML = "<img onmouseout='MM_swapImgRestore()' onmouseover=MM_swapImage('imagelive','','images/nav/btn_livedates_o.png') src='images/nav/btn_livedates.png' name='imagelive' onclick='ClickLive();' width='300' height='29' border='0' id='imagelive' />";		
		document.getElementById('divimagepictures').innerHTML = "<img onmouseout='MM_swapImgRestore()' onmouseover=MM_swapImage('imagepictures','','images/nav/btn_pictures_o.png') src='images/nav/btn_pictures.png' name='imagepictures' onclick='ClickPictures();' width='300' height='29' border='0' id='imagepictures' />";
		document.getElementById('divimagebio').innerHTML = "<img onmouseout='MM_swapImgRestore()' onmouseover=MM_swapImage('imagebio','','images/nav/btn_bio_o.png') src='images/nav/btn_bio.png' name='imagebio' onclick='ClickBio();' width='300' height='29' border='0' id='imagebio' />";
		document.getElementById('divimageabout').innerHTML = "<img onmouseout='MM_swapImgRestore()' onmouseover=MM_swapImage('imageabout','','images/nav/btn_about_o.png') src='images/nav/btn_about.png' name='imageabout' onclick='ClickAbout();' width='300' height='29' border='0' id='imageabout' />";
		document.getElementById('divimagevideo').innerHTML = "<img onmouseout='MM_swapImgRestore()' onmouseover=MM_swapImage('imagevideo','','images/nav/btn_video_o.png') src='images/nav/btn_video.png' name='imagevideo' onclick='ClickVideo();' width='300' height='29' border='0' id='imagevideo' />";
		document.getElementById('divtrasnparent').style.display='none';
		document.getElementById('divcontent').style.display='none';
		global_home = 0;
		global_live = 0;
		global_about = 0;
		global_video = 0;
		global_bio = 0;
		global_music = 0;
		global_pictures = 0;
		global_contact = 0;
	
}

function ClickHome() {
	
	if (global_home == 0) {
		document.getElementById('divtrasnparent').style.display='inline';
		document.getElementById('divcontent').style.display='inline';
		var reqHome = new XMLHttpRequest();
  		reqHome.open('get', 'php/aed_home.php', 'false');
    	reqHome.onreadystatechange = function (aEvt) {  
        	if (reqHome.readyState == 4) {  
          		if(reqHome.status == 200)  {		  
		    		document.getElementById('divcontent').innerHTML = reqHome.responseText;		
					//document.getElementById('divnav').style.backgroundColor = "#5abbe3";
		  		}	
	  		}
    	};
  		reqHome.send(null);  	  	 
		global_home = 1;
	}
	else {
		init();
		global_home = 0;
	}
	
}

function ClickLive() {
	
	if (global_live == 0) {
		init();
		var reqLive = new XMLHttpRequest();
  		document.getElementById('divimagelive').innerHTML = "<img onmouseout='MM_swapImgRestore()' onmouseover=MM_swapImage('imagelive','','images/nav/btn_livedates_o.png') src='images/nav/btn_livedates_o.png' name='imagelive' onclick='ClickLive();' width='300' height='29' border='0' id='imagelive' />";
			reqLive.open('get', 'php/aed_live.php', 'false');
    	reqLive.onreadystatechange = function (aEvt) {  
        	if (reqLive.readyState == 4) {  
          		if(reqLive.status == 200)  {		  
		    		document.getElementById('divcontent').innerHTML = reqLive.responseText;
						document.getElementById('divtrasnparent').style.display='inline';
						document.getElementById('divcontent').style.display='inline';						
					//document.getElementById('divnav').style.backgroundColor = "#5abbe3";
		  		}	
	  		}
    	};
  		reqLive.send(null);  	  	 
		global_live = 1;
	}
	else {

		init();
		global_live = 0;
	}
	
}

function ClickAbout() {
	
	if (global_about == 0) {
		init();
		
		var reqLive = new XMLHttpRequest();
			
			//document.getElementById('divbgimage').style.backgroundImage='';
			//document.getElementById('divbgimage').style.backgroundColor='#ebe000';
			document.getElementById('divimageabout').innerHTML = "<img onmouseout='MM_swapImgRestore()' onmouseover=MM_swapImage('imageabout','','images/nav/btn_about_o.png') src='images/nav/btn_about_o.png' name='imageabout' onclick='ClickAbout();' width='300' height='29' border='0' id='imageabout' />";
  		reqLive.open('get', 'php/aed_about.php', 'false');
    	reqLive.onreadystatechange = function (aEvt) {  
        	if (reqLive.readyState == 4) {  
          		if(reqLive.status == 200)  {		  
		    		document.getElementById('divcontent').innerHTML = reqLive.responseText;	
						document.getElementById('divtrasnparent').style.display='inline';
						document.getElementById('divcontent').style.display='inline';						
					//document.getElementById('divnav').style.backgroundColor = "#5abbe3";
		  		}	
	  		}
    	};
  		reqLive.send(null);  	  	 
		global_about = 1;
	}
	else {
		init();
		global_about = 0;
	}
	
}

function ClickVideo() {
	
	if (global_video == 0) {
		init();
		
		var reqLive = new XMLHttpRequest();
			
			//document.getElementById('divbgimage').style.backgroundImage='';
			//document.getElementById('divbgimage').style.backgroundColor='#ebe000';
			document.getElementById('divimagevideo').innerHTML = "<img onmouseout='MM_swapImgRestore()' onmouseover=MM_swapImage('imagevideo','','images/nav/btn_video_o.png') src='images/nav/btn_video_o.png' name='imagevideo' onclick='ClickVideo();' width='300' height='29' border='0' id='imagevideo' />";
  		reqLive.open('get', 'php/aed_video.php', 'false');
    	reqLive.onreadystatechange = function (aEvt) {  
        	if (reqLive.readyState == 4) {  
          		if(reqLive.status == 200)  {		  
		    		document.getElementById('divcontent').innerHTML = reqLive.responseText;	
						document.getElementById('divtrasnparent').style.display='inline';
						document.getElementById('divcontent').style.display='inline';						
					//document.getElementById('divnav').style.backgroundColor = "#5abbe3";
		  		}	
	  		}
    	};
  		reqLive.send(null);  	  	 
		global_video = 1;
	}
	else {
		init();
		global_video = 0;
	}
	
}

function ClickPictures() {
	
	if (global_pictures == 0) {
		init();
		var reqLive = new XMLHttpRequest();
  		document.getElementById('divimagepictures').innerHTML = "<img onmouseout='MM_swapImgRestore()' onmouseover=MM_swapImage('imagepictures','','images/nav/btn_pictures_o.png') src='images/nav/btn_pictures_o.png' name='imagepictures' onclick='ClickPictures();' width='300' height='29' border='0' id='imagepictures' />";
			reqLive.open('get', 'php/aed_pictures.php', 'false');
    	reqLive.onreadystatechange = function (aEvt) {  
        	if (reqLive.readyState == 4) {  
          		if(reqLive.status == 200)  {		  
		    		document.getElementById('divcontent').innerHTML = reqLive.responseText;
						document.getElementById('divtrasnparent').style.display='inline';
						document.getElementById('divcontent').style.display='inline';
					//document.getElementById('divnav').style.backgroundColor = "#5abbe3";
					//<"http://c3.ac-images.myspacecdn.com/images02/122/l_d1983b99378341e4984700fc15353e1e.jpg" rel="lightbox[roadtrip]">image #3</a>
		  		}	
	  		}
    	};
  		reqLive.send(null);  	  	 
		global_pictures = 1;
	}
	else {
		init();		
		global_pictures = 0;
	}
	
}
function ClickBio() {
	
	if (global_bio == 0) {
		init();
		var reqLive = new XMLHttpRequest();
  		document.getElementById('divimagebio').innerHTML = "<img onmouseout='MM_swapImgRestore()' onmouseover=MM_swapImage('imagebio','','images/nav/btn_bio_o.png') src='images/nav/btn_bio_o.png' name='imagebio' onclick='ClickBio();' width='300' height='29' border='0' id='imagebio' />";
			reqLive.open('get', 'php/aed_bio.php', 'false');
    	reqLive.onreadystatechange = function (aEvt) {  
        	if (reqLive.readyState == 4) {  
          		if(reqLive.status == 200)  {		  
		    		document.getElementById('divcontent').innerHTML = reqLive.responseText;		
						document.getElementById('divtrasnparent').style.display='inline';
						document.getElementById('divcontent').style.display='inline';
					//document.getElementById('divnav').style.backgroundColor = "#5abbe3";
		  		}	
	  		}
    	};
  		reqLive.send(null);  	  	 
		global_bio = 1;
	}
	else {
		init();
		global_bio = 0;
	}
	
}
function ClickContact() {
	
	if (global_contact == 0) {
		init();
		var reqLive = new XMLHttpRequest();
  		document.getElementById('divimagecontact').innerHTML = "<img onmouseout='MM_swapImgRestore()' onmouseover=MM_swapImage('imagecontact','','images/nav/btn_contact_o.png') src='images/nav/btn_contact_o.png' name='imagecontact' onclick='ClickContact();' width='300' height='29' border='0' id='imagecontact' />";
			reqLive.open('get', 'php/aed_contact.php', 'false');
    	reqLive.onreadystatechange = function (aEvt) {  
        	if (reqLive.readyState == 4) {  
          		if(reqLive.status == 200)  {		  
		    		document.getElementById('divcontent').innerHTML = reqLive.responseText;		
						document.getElementById('divtrasnparent').style.display='inline';
						document.getElementById('divcontent').style.display='inline';				
					//document.getElementById('divnav').style.backgroundColor = "#5abbe3";
		  		}	
	  		}
    	};
  		reqLive.send(null);  	  	 
		global_contact = 1;
	}
	else {
		init();
		global_contact = 0;
	}
	
}
