/*
###########################################################################

                        JavaScript Document for
                          tx_exolightbox_pi1
                          
   Programmierung bstenfeldt bstenfeldt(at)exotec.de -  www.exotec.de

			                FEEL SO FREE AND CONTACT US

###########################################################################

This website is powered by TYPO3 - inspiring people to share!
TYPO3 is a free open source Content Management Framework initially created by Kasper Skaarhoj and licensed under GNU/GPL.
TYPO3 is copyright 1998-2006 of Kasper Skaarhoj. Extensions are copyright of their respective owners.
Information and contribution at http://typo3.com/ and http://typo3.org/
*/ 

/* ------------------------------------------------------------------
 console
--------------------------------------------------------------------*/
function changeImagesPeerPage()
{
  startEffects();
  getData();
}


function showConsole()
{
  Element.show("console"); 
}

var consoleVisable = 0;
function MouseOverConsole()
{
    if(consoleVisable==0)
    {
      consoleVisable=1;
      //new Effect.BlindDown("inner_console");
      Element.show("inner_console");
    }
}


function FadeUpConsole()
{
    if(consoleVisable==1)
    {
      consoleVisable=0;
      new Effect.BlindUp("inner_console");	
    }
}

function disableAjax()
{
  Pageloaded();
}

