function myszover(name)
{	
	if (document.images)
	{	
		document.images[name].src = eval (name + "on.src");
	}
}

function myszout(name)
{	
	if (document.images)
	{	
		document.images[name].src = eval (name + "off.src");
	}
}

function myszclick(name)
{	
	if (document.images)
	{	
		document.images[name].src = eval (name + "off.src");
	}
}


function myszclickX(name, number)
{	
	if (document.images)
	{	
		document.images[name].src = eval (name + "on.src");
		document.source.src ='images/graphic-design/' + number + '.jpg';
	}
}

function myszclickP(name, number)
{	
	if (document.images)
	{	
		document.images[name].src = eval (name + "on.src");
		document.source.src ='images/photography/' + number + '.jpg';
	}
}

function myszclickI(name, number)
{	
	if (document.images)
	{	
		document.images[name].src = eval (name + "on.src");
		document.source.src ='images/illustration/' + number + '.jpg';
	}
}

function myszclickD(name, number)
{	
	if (document.images)
	{	
		document.images[name].src = eval (name + "on.src");
		document.source.src ='images/design/' + number + '.jpg';
	}
}


if (document.images)       
{
	introon = new Image();
	introon.src = "./images/intro_on.jpg";
	introoff = new Image();
	introoff.src = "./images/intro_off.jpg";
	
	// menu
	menuhomeon = new Image();
	menuhomeon.src = "./images/menu_home_on.jpg";
	menuhomeoff = new Image();
	menuhomeoff.src = "./images/menu_home_off.jpg";
	
	menustudioon = new Image();
	menustudioon.src = "./images/menu_studio_on.jpg";
	menustudiooff = new Image();
	menustudiooff.src = "./images/menu_studio_off.jpg";

	menuartworkon = new Image();
	menuartworkon.src = "./images/menu_artwork_on.jpg";
	menuartworkoff = new Image();
	menuartworkoff.src = "./images/menu_artwork_off.jpg";

	menucontacton = new Image();
	menucontacton.src = "./images/menu_contact_on.jpg";
	menucontactoff = new Image();
	menucontactoff.src = "./images/menu_contact_off.jpg";
	
	
	home1on = new Image();
	home1on.src = "./images/home01_on.jpg";
	home1off = new Image();
	home1off.src = "./images/home01_off.jpg";
	
	home2on = new Image();
	home2on.src = "./images/home02_on.jpg";
	home2off = new Image();
	home2off.src = "./images/home02_off.jpg";

	home3on = new Image();
	home3on.src = "./images/home03_on.jpg";
	home3off = new Image();
	home3off.src = "./images/home03_off.jpg";

	home4on = new Image();
	home4on.src = "./images/home04_on.jpg";
	home4off = new Image();
	home4off.src = "./images/home04_off.jpg";
	
}