var ani01 = new Image ();
ani01.src = "_images/1-11k1D-256x304-lunchbox.jpg"
var ani02 = new Image ();
ani02.src = "_images/1-11k2D-256x304-lunchbox.jpg"
var ani03 = new Image ();
ani03.src = "_images/1-11k3D-256x304-lunchbox.jpg"
var ani04 = new Image ();
ani04.src = "_images/1-11k4D-256x304-lunchbox.jpg"
var ani05 = new Image ();
ani05.src = "_images/1-11k5-256x304-lunchbox.jpg"
var timeoutOpen = 80;
var timeoutClose = 40;

function lunchbox()
{
if (window.document.images[17].src == ani01.src)
{
lunchboxOpen01 ();
}
else
{
lunchboxClose01 ();
}
}

function lunchboxOpen01 ()
{
window.document.images[17].src = ani02.src;
window.setTimeout ('lunchboxOpen02 ()', timeoutOpen);
}



function lunchboxOpen02 ()
{
window.document.images[17].src = ani03.src;
window.setTimeout ('lunchboxOpen03 ()', timeoutOpen);
}

function lunchboxOpen03 ()
{
window.document.images[17].src = ani04.src;
window.setTimeout ('lunchboxOpen04 ()', timeoutOpen);
}

function lunchboxOpen04 ()
{
window.document.images[17].src = ani05.src;
}


function lunchboxClose01 ()
{
window.document.images[17].src = ani04.src;
window.setTimeout ('lunchboxClose02 ()', timeoutClose);
}


function lunchboxClose02 ()
{
window.document.images[17].src = ani03.src;
window.setTimeout ('lunchboxClose03 ()', timeoutClose);
}

function lunchboxClose03 ()
{
window.document.images[17].src = ani02.src;
window.setTimeout ('lunchboxClose04 ()', timeoutClose);
}

function lunchboxClose04 ()
{
window.document.images[17].src = ani01.src;
}
