function loadImg(src){
var i=loadImg.a.length;
loadImg.a[i] = new Image();
loadImg.a[i].src = src;
}

loadImg.a = new Array();
loadImg('web/images/preload.jpg');
loadImg('web/images/header.jpg');
loadImg('web/images/bin/beanie.jpg');
loadImg('web/images/bg_main.gif');
loadImg('web/images/footer.jpg');
window.onload = function(){
setTimeout("top.location.href = 'web/index.html'",1000);
}