var id='';

function right(id_new) {
	if (id) document.all(id).style.display='none';
	id=id_new;
	document.all(id).style.display='inline';
	return false;
}

var tmp_img=null;

function changeIMG(path_2,height_2,path_3) {
	tmp_img=new Image(240,height_2);
	tmp_img.src=path_2;
	tmp_img.onload=replaceIMG;
	document.getElementById("gallery_2").height=height_2;
	document.getElementById("gallery_3").href=path_3;
	document.getElementById("gallery_2").src=path_2;
}

function replaceIMG() {
	document.getElementById("gallery_2").src=tmp_img.src;
}

massive_length=2;
colors_= new Array(massive_length); 
colors_[0] = "red"; 
colors_[1] = "white"; 
var next_ = 0; 
function Changehead() { 
headcolor= colors_[next_];

document.getElementById("head1").style.color=headcolor;
next_++; 
if(next_>massive_length-1) next_=0; 
window.setTimeout("Changehead()",450);}