var base= "images/"
var nrm = new Array();
var ovr = new Array();
var ocl = new Array();
var stuff = new Array('home','about','hair','wig','extensions','shopping','contact','remis','accessibility');
var select = -1;
var name2 = "";
var temp = 0;

if (document.images)
{
	for (i=0;i<stuff.length;i++)
	{
		nrm[i] = new Image;
		nrm[i].src = base + stuff[i] + "_nrm.gif"
		ovr[i] = new Image;
		ovr[i].src = base + stuff[i] + "_ovr.gif";
		ocl[i] = new Image;
		ocl[i].src = base + stuff[i] + "_ovr.gif";
	}
}

function over(no)
{
	if (document.images)
	{
		document.images[stuff[no]].src = ovr[no].src
	}
}

function out(no)
{
	if (document.images && select != no)
	{
		document.images[stuff[no]].src = nrm[no].src
	}
}

function clic(no)
{
	if (document.images)
	{
		document.images[stuff[no]].src = ocl[no].src
		temp = select;
		select = no;
		if (temp != -1) {out(temp)}
	}
}


function openmypage()
{
	window.open ("http://www.royer.co.uk/myshopsend.php","openmypage","width=563,height=400,location=0,menubar=0,resizable=1,scrollbars=1,status=1,titlebar=0,toolbar=0,screenX=50,left=50,screenY=50,top=50");

//	window.open ("/destroy.php","openmypage","width=563,height=400,location=0,menubar=0,resizable=1,scrollbars=1,status=1,titlebar=0,toolbar=0,screenX=50,left=50,screenY=50,top=50");
	//window.open ("/destroy.php");

}

$(document).ready(function() {
	$('.gallerypic A').lightBox();
	$('.show').parent().click();
});
