var menuItem = '';

window.onload = function(e){
	setMouseOver();
}

function setMouseOver(){

	document.getElementById('dropdown').onmouseover = showMenu;
	document.getElementById('dropdown').onmouseout = hideMenu;

	var dropdownItems = document.getElementById('dropdown').getElementsByTagName('a');
	for(var count = 0; count < dropdownItems.length; count++){

		dropdownItems[count].onmouseover = function(e){
			this.className = 'hover';
		}

		dropdownItems[count].onmouseout = function(e){
			this.className = '';
		}

	}

}

function fake()
{
	return;
}

function menu(id){

	menuItem = id;
	document.getElementById(menuItem + 'button').onmouseout = hideMenu;

	setTimeout ( "fake()", 1000 )
	document.getElementById('dropdown').className = '';

	if(menuItem == 'home') document.getElementById('dropdown').style.marginLeft = '-464px';
	if(menuItem == 'aboutus') document.getElementById('dropdown').style.marginLeft = '-405px';
	if(menuItem == 'deals') document.getElementById('dropdown').style.marginLeft = '-314px';
	if(menuItem == 'parts') document.getElementById('dropdown').style.marginLeft = '-245px';
	if(menuItem == 'audio') document.getElementById('dropdown').style.marginLeft = '-129px';
	if(menuItem == 'assets') document.getElementById('dropdown').style.marginLeft = '14px';
	if(menuItem == 'paper') document.getElementById('dropdown').style.marginLeft = '132px';
	if(menuItem == 'contact') document.getElementById('dropdown').style.marginLeft = '298px';

	if(document.getElementById(menuItem)){
		document.getElementById(menuItem).className = 'visible';
		document.getElementById('dropdown').className = 'visible';
	}

}

function showMenu(){

	if(document.getElementById(menuItem)){
		document.getElementById(menuItem + 'button').className = menuItem + '_active';
		document.getElementById(menuItem).className = 'visible';
		document.getElementById('dropdown').className = 'visible';
	}

}

function hideMenu(){

	if(document.getElementById(menuItem)){
		document.getElementById('dropdown').className = '';
		document.getElementById(menuItem).className = '';
		document.getElementById(menuItem + 'button').className = menuItem;
	}

}
