//the html contents to display
//uses code from http://wsabstract.com/javatutors/dynamiccontent5.shtml
//edited by FiXato 
var mycontent=new Array()

mycontent[1]='images/mirror/m_history_1.jpg';
mycontent[2]='images/mirror/m_history_2.jpg';
mycontent[3]='images/mirror/m_history_3.jpg';

mycontent[21]='images/mirror/m_first_remember_fragment.jpg';
mycontent[22]='images/mirror/m_first_write_dream.jpg';
mycontent[23]='images/mirror/m_first_dreamsigns.jpg';

mycontent[32]='images/mirror/m_relax.jpg';
mycontent[33]='images/mirror/m_how_wild_hypnagogic.jpg';
mycontent[34]='images/mirror/m_how_wild_aware.jpg';
mycontent[38]='images/mirror/m_how_more_hands.jpg';

mycontent[42]='images/mirror/m_while_beyond_look.jpg';
mycontent[43]='images/mirror/m_while_nightmares_positive.jpg';
mycontent[44]='images/mirror/m_while_explore_sky.jpg';
mycontent[45]='images/mirror/m_while_fun_dolphin.jpg';
mycontent[46]='images/mirror/m_while_beyond_annette.jpg';

var i=0

function altercontentlink(i){
tmpimg=new Image();
tmpimg.src=mycontent[i];
//if IE 4+
if (document.all) {
setInterval("mi.src=tmpimg.src",1000);

}
//else if NS 6 (supports new DOM)
else if (document.getElementById){
document.getElementById("mi").src=mycontent[i];

}
if (i==mycontent.length-1)
i=0
else
i++
}

