<!--
//Preloader
myImages=new Array(
//image to be preloaded
"menu_welcome.gif",
"menu_welcome_on.gif",
"menu_breakfast.gif",
"menu_breakfast_on.gif",
"menu_lunch.gif",
"menu_lunch_on.gif",
"menu_dinner.gif",
"menu_dinner_on.gif",
"menu_drinks.gif",
"menu_drinks_on.gif",
"menu_team.gif",
"menu_team_on.gif",
"menu_location.gif",
"menu_location_on.gif"
);
if (document.images) {
 for (i=0;i<myImages.length;i++) {
//Image Path
	path = 'images/';
    img = new Image();
    img.src=path + myImages[i];
 }
}
// ImageSwapper (name = images name)(overname = images filename)
function swap(name,overname) {
document.images[name].src='http://www.lotusespresso.com.au/images/menu_' + overname + '.gif'; 
}

//var c = 0;
//var t;

function runthrough()
{
setTimeout('swap(\'welcome\',\'welcome_on\')', 2800);
setTimeout('swap(\'menus\',\'menus_on\');swap(\'welcome\',\'welcome\')', 3400);
setTimeout('swap(\'recipes\',\'recipes_on\');swap(\'menus\',\'menus\')', 4000);
setTimeout('swap(\'photos\',\'photos_on\');swap(\'recipes\',\'recipes\')', 4600);
setTimeout('swap(\'feedback\',\'feedback_on\');swap(\'photos\',\'photos\')', 5200);
setTimeout('swap(\'location\',\'location_on\');swap(\'feedback\',\'feedback\')', 5800);
setTimeout('swap(\'location\',\'location\')', 6400);
}

//function timedCount()
//{
//if(t == 1000){alert('here we are');swap('welcome','welcome_on');}
//c=c+1;
//t=setTimeout("timedCount()",1000);
//}

//function stopCount(){clearTimeout(t);}

-->

