/**
 * --------------------
 * @by       slem
 * @at       2009.01.12
 * @what     general image preload funtion
 *           Preload images wich must be loaded on the page (empl. the banners)
 * --------------------
 */
function preLoadImg(imgURL)
{
 newImage = new Image();
 newImage.src = imgURL;
}