// Preload Images

function preloadImages()
{
  menu0=new Image();
  menu0.src="images/buttons/button_home_off.jpg";  
  menu1=new Image();
  menu1.src="images/buttons/button_hat_on.jpg";
  menu2=new Image();
  menu2.src="images/buttons/button_ukulele_on.jpg";
  menu3=new Image();
  menu3.src="images/buttons/button_cactus_on.jpg";
  menu4=new Image();
  menu4.src="images/buttons/button_revolver_on.jpg";
  menu5=new Image();
  menu5.src="images/buttons/button_palmtree_on.jpg";
  menu6=new Image();
  menu6.src="images/buttons/button_rassel_on.jpg";    
  menu7=new Image();
  menu7.src="images/buttons/button_chili_on.jpg";
  menu8=new Image();
  menu8.src="images/buttons/button_sun_on.jpg";

}

// Menu Click

   function menuClick(button_name)
   {

   }

// Menu MouseOver
    
    function menuOver(button_name)
    {
       window.document.images[button_name].src = "images/buttons/button_"+button_name+"_on.jpg";
    }

// Menu MouseOut

    function menuOut(button_name)
    {
         window.document.images[button_name].src = "images/buttons/button_"+button_name+"_off.jpg";
    }
    
// PopUpFunctions

   var newwindow;

   //fuer die Archive (Updates/TV-Dates)
   function makePopUpArchiv(url)
   {
	newwindow=window.open(url,'popUp','width=600,height=400,scrollbars=yes,left=50,top=50');
       
	if(window.focus)
	{
	   newwindow.focus()
	}
   }
   
   //fuer TV-Infos
   function makePopUpInfo(url)
   {
	newwindow=window.open(url,'popUp','width=600,height=300,scrollbars=yes,left=50,top=50');
       
	if(window.focus)
	{
	   newwindow.focus()
	}
   }
   
   //fuer Updates
   function makePopUpUpdate(url)
   {
	newwindow=window.open(url,'popUp','width=600,height=300,scrollbars=yes,left=50,top=50');
       
	if(window.focus)
	{
	   newwindow.focus()
	}
   }

   //fuer die Folgenbilder
   function makePopUpPix(url)
   {	
	newwindow=window.open(url,'popUp','width=500,height=350,scrollbars=yes,left=50,top=50');
       
	if(window.focus)
	{
	   newwindow.focus()
	}
   } 
   
   //fuer Impressum
   function makePopUpImpressum(url)
   {	
	newwindow=window.open(url,'popUp','width=600,height=500,scrollbars=yes,left=50,top=50');
       
	if(window.focus)
	{
	   newwindow.focus()
	}
   }
   
   //fuer die eCard-Motive
   function makePopUpECard(url)
   {	
	newwindow=window.open(url,'popUp','width=500,height=350,scrollbars=yes,left=50,top=50');
       
	if(window.focus)
	{
	   newwindow.focus()
	}
   }
   
   //fuer die Specials-Bilder
   function makePopUpSpecial(url)
   {	
	newwindow=window.open(url,'popUp','width=700,height=550,scrollbars=yes,left=50,top=50');
       
	if(window.focus)
	{
	   newwindow.focus()
	}
   }
   
   //fuer die Wallpaper
   function makePopUpWp(url)
   {	
	newwindow=window.open(url,'popUp','width=800,height=600,scrollbars=yes,left=0,top=0');
       
	if(window.focus)
	{
	   newwindow.focus()
	}
   }
   
   //fuer allg. Bilder
   function makePopUpImgGen(url)
   {	
	newwindow=window.open(url,'popUp','width=700,height=500,scrollbars=yes,left=50,top=50');
       
	if(window.focus)
	{
	   newwindow.focus()
	}
   }
   
   //fuer GIFs
   function makePopUpGif(url)
   {	
	newwindow=window.open(url,'popUp','width=350,height=300,scrollbars=yes,left=200,top=200');
       
	if(window.focus)
	{
	   newwindow.focus()
	}
   } 
   
   //fuer Sitemap
   function makePopUpSitemap(url)
   {	
	newwindow=window.open(url,'popUp','width=600,height=500,scrollbars=yes,left=50,top=50');
       
	if(window.focus)
	{
	   newwindow.focus()
	}
   }