/* PALIMPSEST NIJMEGEN 2008 */

// MASTHEAD ANIMATIE
var count=0;                // INITIALISATIE TELLERVARIABELE
var pad  ="img/masthead/m"; // BESTANDSPAD NAAR IMAGES
var num  =16;               // AANTAL IMAGES
var ext  =".gif";           // EXTENSIE IMAGES
function MastheadAnim()
{
    if(navigator.appName=='Microsoft Internet Explorer')
    {
        mast.filters["DXImageTransform.Microsoft.Fade"].Apply(); // MERGE EFFECT
        if(count++>=num)                                         // TELLER
        {
            count=0;                                             // TELLER RESET
        }
        var foto=pad+count+ext;                                  // EVALUATIE VARIABELE FOTO
        document.getElementById("mast").src=foto;                // TOEWIJZING WAARDE FOTO AAN IMG-OBJECT
        //this.num=num; this.pad=pad; this.ext=ext;              // GLOBALISEREN LOKALE VARIABELEN TBV HERHALING FUNCTIEAANROEP
        showID=setTimeout('MastheadAnim()',2500);                // TIMER (ms)
        mast.filters["DXImageTransform.Microsoft.Fade"].Play();  // MERGE EFFECT
  }
  else // ANDERS BROWSERS
  {
        if(count++>=num)                                         // TELLER
        {
            count=0;                                             // TELLER RESET
        }
        var foto=pad+count+ext;                                  // EVALUATIE VARIABELE FOTO
        document.getElementById("mast").src=foto;                // TOEWIJZING WAARDE FOTO AAN IMG-OBJECT
        //this.num=num; this.pad=pad; this.ext=ext;              // GLOBALISEREN LOKALE VARIABELEN TBV HERHALING FUNCTIEAANROEP
        showID=setTimeout('MastheadAnim()',2500);                // TIMER (ms)
  }
// HTML EVENTHANDLER <body onLoad=\"MastheadAnim();\">
// HTML IMAGE DEFINITIE <img id='mast' src='img/masthead/m0.jpg' width='56' height='96' alt=''/>
// CSS CODE img#mast {filter:progid:DXImageTransform.Microsoft.Fade(duration=2.0,overlap=1.0);}
}

// DISABLE SUBMIT/RESET BUTTONS
function DisableButtons()
{   document.getElementById('submit').style.visibility    ='hidden';
    document.getElementById('reset').style.visibility     ='hidden';
    document.getElementById('processing').style.visibility='visible';
}

// PRELOAD HOMEPAGE IMAGES
function Preload()
{
    home0=new Image(472,376);
    home1=new Image(472,376);
    home2=new Image(472,376);
    home3=new Image(472,376);
    home4=new Image(472,376);
    home5=new Image(472,376);
    home6=new Image(472,376);
    home7=new Image(472,376);
    home8=new Image(472,376);
    home9=new Image(472,376);
    home10=new Image(472,376);
    home11=new Image(472,376);
    home12=new Image(472,376);
    home0.src="img/home/home0.jpg";
    home1.src="img/home/home1.jpg";
    home2.src="img/home/home2.jpg";
    home3.src="img/home/home3.jpg";
    home4.src="img/home/home4.jpg";
    home5.src="img/home/home5.jpg";
    home6.src="img/home/home6.jpg";
    home7.src="img/home/home7.jpg";
    home8.src="img/home/home8.jpg";
    home9.src="img/home/home9.jpg";
    home10.src="img/home/home10.jpg";
    home11.src="img/home/home11.jpg";
    home12.src="img/home/home12.jpg";
}

// HOMEPAGE ANIMATIE
var counth=0;               // INITIALISATIE TELLERVARIABELE
var padh  ="img/home/home"; // BESTANDSPAD NAAR IMAGES
var numh  =12;              // AANTAL IMAGES
var exth  =".jpg";          // EXTENSIE IMAGES
function HomepageAnim()
{
    if(navigator.appName=='Microsoft Internet Explorer')
    {
        homepage.filters["DXImageTransform.Microsoft.Fade"].Apply();    // MERGE EFFECT
        if(counth++>=numh)                                              // TELLER
        {
            clearTimeout(homepageID);                                   // STOP ANIMATIE
            document.getElementById("homepage").src='img/home/home12.jpg';
        }
        else
        {
            var fotoh=padh+counth+exth;                                  // EVALUATIE VARIABELE FOTO
            document.getElementById("homepage").src=fotoh;               // TOEWIJZING WAARDE FOTO AAN IMG-OBJECT
            homepageID=setTimeout('HomepageAnim()',8000);                // TIMER (ms)
            homepage.filters["DXImageTransform.Microsoft.Fade"].Play();  // MERGE EFFECT
        }
    }
    else // ANDERE BROWSERS
    {
        if(counth++>=numh)                                               // TELLER
        {
            clearTimeout(homepageID);                                    // STOP ANIMATIE
            document.getElementById("homepage").src='img/home/home12.jpg';
        }
        else
        {
            var fotoh=padh+counth+exth;                                  // EVALUATIE VARIABELE FOTO
            document.getElementById("homepage").src=fotoh;               // TOEWIJZING WAARDE FOTO AAN IMG-OBJECT
            homepageID=setTimeout('HomepageAnim()',8000);                // TIMER (ms)
        }
    }
// HTML EVENTHANDLER <body onLoad=\"HomepageAnim();\">
// HTML IMAGE DEFINITIE <img id='homepage' name='homepage' src='img/home/palimpsest1.jpg' width='472' height='376' alt=''/>
// CSS CODE img#homepage {filter:progid:DXImageTransform.Microsoft.Fade(duration=3.0,overlap=1.0);}
}

