// JavaScript Document



var ids=new Array('pic1','pic2','pic3','pic4','pic5','pic6','pic7','pic8','pic9','pic10','pic11','pic12','pic13','pic14','pic15','pic16','pic17','pic18','pic19','pic20','pic21','pic22','pic23');
//var flashMovie = ['flash1','flash2','flash3','flash4','flash5','flash6','flash7','flash8','flash9','flash10'];

function switchid(id){  
        hideallids();
        showdiv(id);
		playflash();
	
}

function hideallids(){
        //loop through the array and hide each element by id
        for (var i=0;i<ids.length;i++){
                hidediv(ids[i]);
        }                 
}

function hidediv(id) {
        //safe function to hide an element with a specified id
        if (document.getElementById) { // DOM3 = IE5, NS6
                document.getElementById(id).style.display = 'none';
				
				
        }
        else {
                if (document.layers) { // Netscape 4
                        document.id.display = 'none';
						
                }
                else { // IE 4
                        document.all.id.style.display = 'none';
						
                }
				
        }
}



function showdiv(id) {
        //safe function to show an element with a specified id
                  
        if (document.getElementById) { // DOM3 = IE5, NS6
                document.getElementById(id).style.display = 'block';
				
        }
        else {
                if (document.layers) { // Netscape 4
                        document.id.display = 'block';
                }
                else { // IE 4
                        document.all.id.style.display = 'block';
                }
        }
		
}

function playflash() {
	if(document.getElementByid(id).style.display = 'block') {
		document.getElementById("flash1").Play();
	}
}
//function stopSound() {
//	if ( document.getElementById.style.display = 'none') {
//		document.getElementById('flash1').StopPlay();
		
//	}
	
//}



