/* Gominola Creative Media 2006
________________________________________*/

function blurme() {
	this.blur();
}

function antispam (nombre, dominio) {
    document.location = "mailto:" + nombre + "@" + dominio;
}

function loadContent(img)
{
	document.getElementById("content-foto").innerHTML = "<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td><img src=\"" +img+ "\" alt=\"\" /></td></tr></table>";
}

function work()
{
	var specs = 870;
	var slideTo = new Fx.Style($('thumbsHolder'), 'margin-left',
		{
			duration: 1500, transition: Fx.Transitions.quartOut, wait: false
		}).set(0);
	$$('div.nav a').each(function (el, i)
	{
		el.onclick = function()
		{
			slideTo.start((specs*i)*-1);
	        return false;
	    };
	});
	
	var showContent = new Class();
	$$('div#thumbsHolder a').each(function(el)
	{
		el.onclick = function()
		{
			loadContent(this);
	        return false;
	    };
	});
}