| | 2 | window.onload = preloader; |
| | 3 | |
| | 4 | function preloader() |
| | 5 | { |
| | 6 | var de = document.getElementById('divimages'); |
| | 7 | |
| | 8 | if (de) |
| | 9 | { |
| | 10 | // counter |
| | 11 | var i = 0; |
| | 12 | // create object |
| | 13 | imageObj = new Image(); |
| | 14 | // set image list |
| | 15 | images = new Array(); |
| | 16 | images[0]="/img/blog.png" |
| | 17 | images[1]="/img/myimages.png" |
| | 18 | images[2]="/img/static/chat_icon.png" |
| | 19 | images[3]="/img/static_pages.png" |
| | 20 | images[4]="/img/faq.png" |
| | 21 | images[5]="/img/Glossary.png" |
| | 22 | images[6]="/img/ipod.png" |
| | 23 | images[7]="/img/phorum.png" |
| | 24 | images[8]="/img/mmultimedia.png" |
| | 25 | images[9]="/img/ylinks.png" |
| | 26 | images[10]="/img/admin/tests.png" |
| | 27 | images[11]="/img/webquests.png" |
| | 28 | images[12]="/img/treasures.png" |
| | 29 | images[13]="/img/quotes.png" |
| | 30 | images[14]="/img/ecourses.png" |
| | 31 | images[15]="/img/static/forums.png" |
| | 32 | // start preloading |
| | 33 | for(i=0; i<=15; i++) |
| | 34 | { |
| | 35 | imageObj.src=images[i]; |
| | 36 | } |
| | 37 | } |
| | 38 | } |