//mouse style effect with javascript
function hover(id,styleClass){
	document.getElementById(id).className = styleClass;
}

//set hash from flash
function setHash(hashVar){
	document.location.hash = hashVar;
}
