//---------------------------------------------------
// Author     : Ronald Izaks
// Date       : November 03, 2007
// Filename   : javascript/effects.js
// Purpose    : all javascript functions for website
// Comments   : -
//---------------------------------------------------

function showContact()
{
	obj = 'imgcontact';
	
	if (!(document.getElementById(obj))) return;
	var obj = document.getElementById(obj);
	
	obj.style.visibility = "visible";
}

function hideContact()
{
	obj = 'imgcontact';
	
	if (!(document.getElementById(obj))) return;
	var obj = document.getElementById(obj);
	
	obj.style.visibility = "hidden";
}

