// JavaScript Document
// PRELOADING IMAGES
if (document.images) {
 img_on =new Image();  img_on.src ="/wp-content/themes/malarsalen/images/boka-kursON.png"; 
 img_off=new Image();  img_off.src="/wp-content/themes/malarsalen/images/boka-kurs.png"; 
}
function handleOver() { 
 if (document.images) document.imgName.src=img_on.src;
}

function handleOut() {
 if (document.images) document.imgName.src=img_off.src;
}
