// Writes the Flash files into the html document
function LoadFlash() {

	var so = new SWFObject("flash/alvor-slideshow.swf", "slideshow", "344", "258", "6", "#FFF");
	so.write("slideshow");
}


// THUMBNAIL GALLERY

var current ;

function loadFace (whichface) {
	if (document.getElementById) {
	
		// load the face
		obj=document.getElementById(whichface) ;
		document.getElementById('current_img').src = obj.href ;
		
		// reset last thumbnail
		if (document.getElementById(current)) {
      	document.getElementById(current).style.borderColor="#FFF" ;
		}
		
		// highlight the new thumbnail
		document.getElementById(whichface).style.borderColor="#FF9" ;
		
		// update the current thumbnail
		current = whichface ;
		
		return false ;
	} else {
		return true ;
	}
}
