window.onload = initAll;

var intro = null;
var homecontainer = null;

function initAll(){
	topNavOut();
	footerOut();
	ebayOut();
	winSize();
	setTimeout(seeSite, 2500);
}

function winSize(){
	var x,y;
	if (self.innerHeight) // all except Explorer
	{
		x = self.innerWidth;
		y = self.innerHeight;
	}
	else if (document.documentElement && document.documentElement.clientHeight)
		// Explorer 6 Strict Mode
	{
		x = document.documentElement.clientWidth;
		y = document.documentElement.clientHeight;
	}
	else if (document.body) // other Explorers
	{
		x = document.body.clientWidth;
		y = document.body.clientHeight;
	}
	
	if (y < 650) {
		document.getElementById("maincontainerhome").style.top = '0px';
		document.getElementById("maincontainerhome").style.marginTop = '0px';
		document.getElementById("lapedrera").style.top = '0px';
		document.getElementById("lapedrera").style.marginTop = '0px';
		document.getElementById("copyright").style.top = '595px';
		document.body.parentNode.style.background = "#F4EBD2 url(../images/bg.jpg) repeat-x scroll center top";
	}
	
	if (x < 900) {
		document.getElementById("maincontainerhome").style.left = '0px';
		document.getElementById("maincontainerhome").style.marginLeft = '0px';
		document.getElementById("lapedrera").style.left = '0px';
		document.getElementById("lapedrera").style.marginLeft = '0px';
		document.getElementById("copyright").style.left = '0px';
		document.getElementById("copyright").style.marginLeft = '0px';
		document.body.parentNode.style.background = "#F4EBD2 url(../images/bg.jpg) repeat-x scroll left top";
	}
}

function footerOver(thisNav){
	document.getElementById("footerimg").src = "images/footer_" + thisNav + "_hov.png";
}

function footerOut(){
	document.getElementById("footerimg").src = "images/footer_rst.png";
}

function ebayOut(){
	document.getElementById("ebayimg").src = "images/ebay_rst.png";
}

function topNavOver(thisNav){
	document.getElementById("topnav").src = "images/topnav/topnav_" + thisNav + "_hov.png";
}

function topNavOut(){
	document.getElementById("topnav").src = "images/topnav/topnav_rst.png";
}

function removeIntro() {
	intro = document.getElementsByTagName("OBJECT");
	intro[0].parentNode.removeChild(intro[0]);
}

function seeSite() {
	document.getElementById("maincontainerhome").style.visibility = 'visible';
}

function hideSite() {
	document.getElementById("maincontainerhome").style.visibility = 'hidden';
}