var locationAfterPreload = "home,1254,1254.html"
var lengthOfPreloadBar = 200
var heightOfPreloadBar = 10
var yourImages = new Array(
"http://img.hp-w.de/layout/spacer.gif",
"http://img.hp-w.de/layout/sitebg.gif",
"http://img.hp-w.de/layout/content_bgimg.gif",
"http://img.hp-w.de/layout/header_login.gif",
"http://img.hp-w.de/layout/subnavi_bgbar.gif",
"http://img.hp-w.de/layout/leftbottom02.gif",
"http://img.hp-w.de/layout/leftbottom01-15.gif",
"http://img.hp-w.de/layout/subnavi_left.gif",
"http://img.hp-w.de/layout/subnavi_right.gif",
"http://img.hp-w.de/layout/rightbottom02.gif",
"http://img.hp-w.de/layout/leftbottom01.gif",
"http://img.hp-w.de/layout/leftbottom.gif",
"http://img.hp-w.de/layout/rightbottom.gif",
"http://img.hp-w.de/layout/navirightbar.gif",
"http://img.hp-w.de/layout/bottommiddle.gif",
"http://img.hp-w.de/layout/leftframe.gif",
"http://img.hp-w.de/layout/rightframe.gif",
"http://img.hp-w.de/layout/navileftbar.jpg",
"http://img.hp-w.de/layout/headerright.gif",
"http://img.hp-w.de/layout/headerleft.gif",
"http://img.hp-w.de/menu_main/profilesettingson.jpg",
"http://img.hp-w.de/menu_main/profilesettings.jpg",
"http://img.hp-w.de/menu_main/manualon.jpg",
"http://img.hp-w.de/menu_main/manual.jpg",
"http://img.hp-w.de/menu_main/loginon.jpg",
"http://img.hp-w.de/menu_main/login.jpg",
"http://img.hp-w.de/menu_main/cityoverviewon.jpg",
"http://img.hp-w.de/menu_main/cityoverview.jpg",
"http://img.hp-w.de/menu_main/myhomepageon.gif",
"http://img.hp-w.de/menu_main/myhomepage.gif",
"http://img.hp-w.de/menu_main/FAQon.gif",
"http://img.hp-w.de/menu_main/FAQ.gif",
"http://img.hp-w.de/menu_main/communityon.gif",
"http://img.hp-w.de/menu_main/community.gif",
"http://img.hp-w.de/world/map_with_cities.jpg",
"http://img.hp-w.de/upgrades/counter.gif",
"http://img.hp-w.de/upgrades/guestbook.gif",
"http://img.hp-w.de/upgrades/kontaktform.gif",
"http://img.hp-w.de/upgrades/umfragen.gif",
"http://img.hp-w.de/home/step_1.jpg",
"http://img.hp-w.de/home/step_1_hover.jpg",
"http://img.hp-w.de/home/step_2.jpg",
"http://img.hp-w.de/home/step_2_hover.jpg",
"http://img.hp-w.de/home/step_3.jpg",
"http://img.hp-w.de/home/step_3_hover.jpg",
"http://img.hp-w.de/home/step_footer.jpg",
"http://img.hp-w.de/home/step_footer_hover.jpg",
"http://img.hp-w.de/home/step_head.jpg",
"http://img.hp-w.de/ajax/bar.gif",
"http://img.hp-w.de/ajax/bar_circle.gif",
"http://img.hp-w.de/ajax/pk.gif",
"http://img.hp-w.de/ajax/squares.gif")

if (document.images) {
var dots = new Array()
dots[0] = new Image(1,1)
dots[0].src = "http://img.hp-w.de/preloader/preload_1.gif"
dots[1] = new Image(1,1)
dots[1].src = "http://img.hp-w.de/preloader/preload_2.gif"
var preImages = new Array(),coverage = Math.floor(lengthOfPreloadBar/yourImages.length),currCount = 0
var loaded = new Array(),i,covered,timerID
var leftOverWidth = lengthOfPreloadBar%coverage
}
function loadImages() {
for (i = 0; i < yourImages.length; i++) {
preImages[i] = new Image()
preImages[i].src = yourImages[i]
}
for (i = 0; i < preImages.length; i++) {
loaded[i] = false
}
checkLoad()
}
function checkLoad() {
if (currCount == preImages.length) {
location.replace(locationAfterPreload)
return
}
for (i = 0; i <= preImages.length; i++) {
if (loaded[i] == false && preImages[i].complete) {
loaded[i] = true
eval("document.img" + currCount + ".src=dots[1].src")
currCount++
}
}
timerID = setTimeout("checkLoad()",10)
}