<script>

/*
Preload images script
By JavaScript Kit (http://javascriptkit.com)
Over 400+ free scripts here!
*/

var myimages=new Array()
function preloadimages(){
for (i=0;i<preloadimages.arguments.length;i++){
myimages[i]=new Image()
myimages[i].src=preloadimages.arguments[i]
}
}


//Enter path of images to be preloaded inside parenthesis. Extend list as desired.
preloadimages("http://geisharestaurant.com/img/nav_home2.gif","http://geisharestaurant.com/img/nav_cuisine2.gif","http://geisharestaurant.com/img/nav_space2.gif", "http://geisharestaurant.com/img/nav_events2.gif", "http://geisharestaurant.com/img/nav_about2.gif", "http://geisharestaurant.com/img/nav_press2.gif", "http://geisharestaurant.com/img/ban_home.jpg", "http://geisharestaurant.com/img/ban_cuisine.jpg", "http://geisharestaurant.com/img/ban_space3.jpg", "http://geisharestaurant.com/img/ban_events2.jpg", "http://geisharestaurant.com/img/ban_about.jpg","http://geisharestaurant.com/img/opentable2.gif")

</script>