/*
	Altobelli scripting
	Weston Shaw
*/


/* Navigation
-------------------------------------------------------------------*/
function nav(id,i){
	var li;
	if(document.getElementById){
		var image = document.getElementById(id);
		li = image.parentNode.parentNode;
		if(i==1){
			image.src="images/nav-"+id+"x.gif"; // Image Rollover
			li.className=" over"; // Dropdown fro IE 5.5 and 6
		}
		if(i==0){
			image.src="images/nav-"+id+".gif"; // Image Rollout
			li.className=""; // Dropdown fro IE 5.5 and 6
		}
	}
}


/* Write Flash on home page
-------------------------------------------------------------------*/
function writeFlash(){
	if(document.getElementById&&document.getElementById("flash")){
		var flash = document.getElementById("flash");
		var flashContent = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" height="248" width="595">'+
		'<param name="movie" value="Altobelli_intro3.swf">'+
		'<param name="quality" value="best">'+
		'<param name="play" value="true">'+
		'<param name="wmode" value="transparent">'+
		'<embed wmode="transparent" height="248" pluginspage="http://www.macromedia.com/go/getflashplayer" src="Altobelli_intro3.swf" type="application/x-shockwave-flash" width="595" quality="best" play="true"></embed>'+
		'</object>';
		
		flash.innerHTML=flashContent;
	}
}

function boxOver(){// for IE 6 & 5.5 only 
	if(!document.all&&!document.getElementsByTagName) return false;
	var links = document.getElementsByTagName("a");
	for (i=0; i<links.length; i++){
		if(links[i].className=="button"){
			links[i].onmouseover=function(){
				this.lastChild.className=this.lastChild.className="over";
			}
			links[i].onmouseout=function(){
				this.lastChild.className=this.lastChild.className="";
			}
		}
	}
}