// JavaScript Document

function over(id,w){
document.getElementById(id).style.width = w+"px";
}
function out(id,w){
document.getElementById(id).style.width = w+"px";
}
function thumbs(id,b,txt){
	if(b == "s"){
	document.getElementById(id).style.border = "solid 2px #afa874";
	document.getElementById(id).style.marginLeft = "-2px";
	document.getElementById(id).style.marginTop = "-2px";
	document.getElementById("legenda").innerHTML = txt;
	}else{
	document.getElementById(id).style.border = "none";
	document.getElementById(id).style.marginLeft = "0px";
	document.getElementById(id).style.marginTop = "0px";
	document.getElementById("legenda").innerHTML = txt;
	}
}
function thumbs2(id,b,txt){
	if(b == "s"){
	document.getElementById(id).style.border = "solid 2px #afa874";
	document.getElementById(id).style.marginLeft = "-2px";
	document.getElementById(id).style.marginTop = "-2px";
	document.getElementById("legenda2").innerHTML = txt;
	}else{
	document.getElementById(id).style.border = "none";
	document.getElementById(id).style.marginLeft = "0px";
	document.getElementById(id).style.marginTop = "0px";
	document.getElementById("legenda2").innerHTML = txt;
	}
}

function blog() {
    window.location.href='http://www.bykamy.com/blog';
}
