function replaceImage( id, filename )
{
	var directoryImage = "./image/menu/";
	var objectTarget = document.getElementById( id );
	objectTarget.src = directoryImage + finename;
}
function setOpacity( objectTarget, valueOpacity )
{
	if( valueOpacity > 1 )
	{
		valueOpacity *= 100;
	}
	if( valueOpacity < 0 )
	{
		valueOpacity = 0;
	}
	objectTarget.style.opacity = valueOpacity;
	objectTarget.style.modOpacity = valueOpacity;
	objectTarget.style.filter = 'alpha(opacity=' + eval( 100 * valueOpacity ) + ')';
}

function sendMail()
{
	var account = 'info';
	var domain = 'torolin.net';
	var url = 'mailto:' + account + '@' + domain;

	document.location.href = url;
}
