if(document.images) {
	main_01Off = new Image
	main_01Over = new Image
	main_01Off.src = "images/nav/main_01_off.jpg"
	main_01Over.src = "images/nav/main_01_over.jpg"

	main_02Off = new Image
	main_02Over = new Image
	main_02Off.src = "images/nav/main_02_off.jpg"
	main_02Over.src = "images/nav/main_02_over.jpg"

	main_03Off = new Image
	main_03Over = new Image
	main_03Off.src = "images/nav/main_03_off.jpg"
	main_03Over.src = "images/nav/main_03_over.jpg"

	main_04Off = new Image
	main_04Over = new Image
	main_04Off.src = "images/nav/main_04_off.jpg"
	main_04Over.src = "images/nav/main_04_over.jpg"

	main_05Off = new Image
	main_05Over = new Image
	main_05Off.src = "images/nav/main_05_off.jpg"
	main_05Over.src = "images/nav/main_05_over.jpg"

	main_06Off = new Image
	main_06Over = new Image
	main_06Off.src = "images/nav/main_06_off.jpg"
	main_06Over.src = "images/nav/main_06_over.jpg"

	main_07Off = new Image
	main_07Over = new Image
	main_07Off.src = "images/nav/main_07_off.jpg"
	main_07Over.src = "images/nav/main_07_over.jpg"

	main_08Off = new Image
	main_08Over = new Image
	main_08Off.src = "images/nav/main_08_off.jpg"
	main_08Over.src = "images/nav/main_08_over.jpg"

	main_09Off = new Image
	main_09Over = new Image
	main_09Off.src = "images/nav/main_09_off.jpg"
	main_09Over.src = "images/nav/main_09_over.jpg"

	artist_01Off = new Image
	artist_01Over = new Image
	artist_01Off.src = "images/nav/artist_01_off.jpg"
	artist_01Over.src = "images/nav/artist_01_over.jpg"

	artist_02Off = new Image
	artist_02Over = new Image
	artist_02Off.src = "images/nav/artist_02_off.jpg"
	artist_02Over.src = "images/nav/artist_02_over.jpg"

	artist_03Off = new Image
	artist_03Over = new Image
	artist_03Off.src = "images/nav/artist_03_off.jpg"
	artist_03Over.src = "images/nav/artist_03_over.jpg"

	gallery_01Off = new Image
	gallery_01Over = new Image
	gallery_01Off.src = "images/nav/gallery_01_off.jpg"
	gallery_01Over.src = "images/nav/gallery_01_over.jpg"

	gallery_02Off = new Image
	gallery_02Over = new Image
	gallery_02Off.src = "images/nav/gallery_02_off.jpg"
	gallery_02Over.src = "images/nav/gallery_02_over.jpg"

	gallery_03Off = new Image
	gallery_03Over = new Image
	gallery_03Off.src = "images/nav/gallery_03_off.jpg"
	gallery_03Over.src = "images/nav/gallery_03_over.jpg"

	portfolio_01Off = new Image
	portfolio_01Over = new Image
	portfolio_01Off.src = "images/nav/portfolio_01_off.jpg"
	portfolio_01Over.src = "images/nav/portfolio_01_over.jpg"

	portfolio_02Off = new Image
	portfolio_02Over = new Image
	portfolio_02Off.src = "images/nav/portfolio_02_off.jpg"
	portfolio_02Over.src = "images/nav/portfolio_02_over.jpg"

	portfolio_03Off = new Image
	portfolio_03Over = new Image
	portfolio_03Off.src = "images/nav/portfolio_03_off.jpg"
	portfolio_03Over.src = "images/nav/portfolio_03_over.jpg"

	animation_01Off = new Image
	animation_01Over = new Image
	animation_01Off.src = "images/nav/animation_01_off.jpg"
	animation_01Over.src = "images/nav/animation_01_over.jpg"

	animation_02Off = new Image
	animation_02Over = new Image
	animation_02Off.src = "images/nav/animation_02_off.jpg"
	animation_02Over.src = "images/nav/animation_02_over.jpg"

	animation_03Off = new Image
	animation_03Over = new Image
	animation_03Off.src = "images/nav/animation_03_off.jpg"
	animation_03Over.src = "images/nav/animation_03_over.jpg"

	animation_04Off = new Image
	animation_04Over = new Image
	animation_04Off.src = "images/nav/animation_04_off.jpg"
	animation_04Over.src = "images/nav/animation_04_over.jpg"

	press_01Off = new Image
	press_01Over = new Image
	press_01Off.src = "images/nav/press_01_off.jpg"
	press_01Over.src = "images/nav/press_01_over.jpg"

	press_02Off = new Image
	press_02Over = new Image
	press_02Off.src = "images/nav/press_02_off.jpg"
	press_02Over.src = "images/nav/press_02_over.jpg"

	press_03Off = new Image
	press_03Over = new Image
	press_03Off.src = "images/nav/press_03_off.jpg"
	press_03Over.src = "images/nav/press_03_over.jpg"

	press_04Off = new Image
	press_04Over = new Image
	press_04Off.src = "images/nav/press_04_off.jpg"
	press_04Over.src = "images/nav/press_04_over.jpg"

	press_05Off = new Image
	press_05Over = new Image
	press_05Off.src = "images/nav/press_05_off.jpg"
	press_05Over.src = "images/nav/press_05_over.jpg"
}


function imgOver(dir, thisImg) {
	document[thisImg].src="images/" + dir + "/" + thisImg + "_over.jpg"
}

function imgOut(dir, thisImg) {
	document[thisImg].src="images/" + dir + "/" + thisImg + "_off.jpg"
}

function openurl(urlname) {
	urlWindow = window.open(urlname);
} 

stdBrowser = (document.getElementById) ? true : false

function toggleMenu(currElem, nextPos) {
	leftPos = (document.body.clientWidth/2);	
	menuObj = (stdBrowser) ? document.getElementById(currElem).style : eval("document." + currElem)
	if(currElem=="artistMenu") {
			leftPos -= 285;
	}
	if(currElem=="pressMenu") {
			leftPos -= 205;
	}
	if(currElem=="animationMenu") {
			leftPos -= 25;
	}
	if(currElem=="portfolioMenu") {
			leftPos += 50;
	}
		if(currElem=="galleryMenu") {
			leftPos += 120;
	}
	if(leftPos<0) leftPos=0;
	menuObj.left = (stdBrowser) ? leftPos + "px" : leftPos;
	menuObj.top = (stdBrowser) ? nextPos + "px" : nextPos
}

function loadmovie(dir, moviename) {
	//arg1 = "D:/Users/maio/ayri/movies/" + moviename + ".html";
	arg1 = "images/" + dir + "/" + moviename + ".html";
	arg2 = 'moviename';
	arg3 = 'width=400,height=350';
	imageWindow = window.open(arg1, arg2, arg3);
} 
