<!--
// PRELOADING IMAGES
if (document.images) {

 img1_on =new Image(); img1_on.src ="http://www.the-dots.de/wp-content/themes/grid_focus_public2/images/head_01_we_pink.gif"; 
 img1_off=new Image(); img1_off.src="http://www.the-dots.de/wp-content/themes/grid_focus_public2/images/head_01_we_bl.gif"; 

 img2_on =new Image(); img2_on.src ="http://www.the-dots.de/wp-content/themes/grid_focus_public2/images/head_02_are_pink.gif"; 
 img2_off=new Image(); img2_off.src="http://www.the-dots.de/wp-content/themes/grid_focus_public2/images/head_02_are_bl.gif"; 

 img3_on =new Image(); img3_on.src ="http://www.the-dots.de/wp-content/themes/grid_focus_public2/images/head_03_the_pink.gif"; 
 img3_off=new Image(); img3_off.src="http://www.the-dots.de/wp-content/themes/grid_focus_public2/images/head_03_the_bl.gif"; 

 img4_on =new Image(); img4_on.src ="http://www.the-dots.de/wp-content/themes/grid_focus_public2/images/head_04_dots_pink.gif"; 
 img4_off=new Image(); img4_off.src="http://www.the-dots.de/wp-content/themes/grid_focus_public2/images/head_04_dots.gif"; 

 img5_on =new Image(); img5_on.src ="http://www.the-dots.de/wp-content/themes/grid_focus_public2/images/dots_gruppe_front_on.jpg"; 
 img5_off=new Image(); img5_off.src="http://www.the-dots.de/wp-content/themes/grid_focus_public2/images/dots_gruppe_front_off.jpg";

 img6_on =new Image(); img6_on.src ="http://www.the-dots.de/wp-content/themes/grid_focus_public2/images/listen_button_on.gif"; 
 img6_off=new Image(); img6_off.src="http://www.the-dots.de/wp-content/themes/grid_focus_public2/images/listen_button_off.gif";

 img7_on =new Image(); img7_on.src ="http://www.the-dots.de/wp-content/themes/grid_focus_public2/images/art_disko_on.jpg"; 
 img7_off=new Image(); img7_off.src ="http://www.the-dots.de/wp-content/themes/grid_focus_public2/images/art_disko_off.jpg"; 


 }

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

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

function handleOver() {
 if (document.images) 
  document.imgName.src=img_on.src;
}

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

//-->


