// Handled screenshot
function addScreenShotActions(id){
	if (document.all && document.getElementById ) {
		var d = document.getElementById(id).childNodes;
		for(var a=0; a<d.length; a++){
			if(d[a].nodeName == "DIV"){
				d[a].onmouseover = function(){
					this.className += " over";
				}
				d[a].onmouseout = function(){
					this.className = this.className.replace(" over", "");
				}
			} 
		}
	}
}