<!--
// PRELOADING IMAGES
if (document.images) {
 // HOME
 img1_on =new Image();  img1_on.src ="../../images/header/sub/homeG.png"; 
 img1_off=new Image();  img1_off.src="../../images/header/sub/home.png"; 
 // MUSIC
  img2_on =new Image();  img2_on.src ="../../images/header/sub/musicG.png"; 
  img2_off=new Image();  img2_off.src="../../images/header/sub/music.png"; 
 // LOUNGE
  img3_on =new Image();  img3_on.src ="../../images/header/sub/loungeG.png"; 
  img3_off=new Image();  img3_off.src="../../images/header/sub/lounge.png"; 
 // DJS
  img4_on =new Image();  img4_on.src ="../../images/header/sub/djsG.png"; 
  img4_off=new Image();  img4_off.src="../../images/header/sub/djs.png"; 
 // PROMOTIONS
  img5_on =new Image();  img5_on.src ="../../images/header/sub/promotionsG.png"; 
  img5_off=new Image();  img5_off.src="../../images/header/sub/promotions.png"; 
 // SEND MUSIC
  img6_on =new Image();  img6_on.src ="../../images/header/sub/sendmusicG.png"; 
  img6_off=new Image();  img6_off.src="../../images/header/sub/sendmusic.png"; 
 // NEW SECTION
 
 // Listen Now
  img7_on =new Image();  img7_on.src ="../../images/body/listenNow.png"; 
  img7_off=new Image();  img7_off.src="../../images/body/listenNow_ov.png"; 
}

function movr(k) {
 if (document.images) 
  eval('document.img'+k+'.src=img'+k+'_on.src');
  return true;
}

function mout(k) {
 if (document.images) 
  eval('document.img'+k+'.src=img'+k+'_off.src');
  return true;
}

//-->