var resetMenu = function()
				{
					$("slider").tween("margin-left", slideStart+"px");
				}
var highLightOne =  function()
				{
					$("slider").tween("margin-left", slideOne+"px");
				};
var highLightTwo =  function()
				{
					$("slider").tween("margin-left", slideTwo+"px");
				};
var highLightThree =  function()
				{
					$("slider").tween("margin-left", slideThree+"px");
				};
var highLightFour =  function()
				{
					$("slider").tween("margin-left", slideFour+"px");
				};
var highLightFive =  function()
				{
					$("slider").tween("margin-left", slideFive+"px");
				};

//content slider (web copy for portfolio work)
var counter = 0;
var copyTwo = null;
var copyOne = 0;

var moreButton = function()
				{
					switch(counter)
					{
						case 0:
						copyTwo = -490;
						if(counter+1 < pages)
						{
							counter++;	
						}	
						break;
						
						case 1:
						copyTwo = -980;
						break;
					}
					$("copyPanel").tween("margin-left", copyTwo+"px");
					
					
					
				}
var prevButton = function()
				{
					switch(counter)
					{
						case 1:
						copyOne = -490;
						counter--;	
						break;
						
						case 0:
						copyOne = 0;
						break;
					}
					
					$("copyPanel").tween("margin-left", copyOne+"px");
				}

window.addEvent('domready', function() {
		
				
				$("menuList").getElement(".menTwo").addEvent("mouseover", highLightOne);
				$("menuList").getElement(".menTwo").addEvent("mouseleave", resetMenu);
				
				$("menuList").getElement(".menThree").addEvent("mouseover", highLightTwo);
				$("menuList").getElement(".menThree").addEvent("mouseleave", resetMenu);
				
				
				
});