flash = document.getElementsByTagName("object");
for(var i=0; i<flash.length;i++){
		flash[i].outerHTML = flash[i].outerHTML;
}

function $(a){
		return document.getElementById(a);
	}

function Mouse_Sobre(a){
	if(!$(a)){
			return;
		}
		
	if($(a).src.match(".jpg")){
		$("preload").innerHTML += "<img src='"+$(a).src.replace(".jpg","_on.jpg")+"' alt='' />";
	}else{
		$("preload").innerHTML += "<img src='"+$(a).src.replace(".gif","_on.gif")+"' alt='' />";	
		}

	$(a).onmouseover = function(){
		
			if(this.src.match(".jpg")){
				this.src = this.src.replace(".jpg","_on.jpg");	
			}else{
				this.src = this.src.replace(".gif","_on.gif");	
			}
		
			
		}
	
	$(a).onmouseout = function(){
			if(this.src.match(".jpg")){
				this.src = this.src.replace("_on.jpg",".jpg");
			}else{
				this.src = this.src.replace("_on.gif",".gif");
			}
		}
	
}