<!--
	
	function changeBG(mode,item)
	{
		if(mode==1)
		{
			document.getElementById(item.id).style.backgroundColor='#CC66CC';
			document.getElementById(item.id).style.color='white';
		}
		else
		{
			document.getElementById(item.id).style.backgroundColor='#FF00FF';//#FF00FF
			document.getElementById(item.id).style.color='darkblue';
			document.getElementById(item.id).style.cursor='hand';
		}
		
		//document.getElementById(item.id).style.backgroundColor='#FF66CC';
	}
	
	function takeme(item)
	{
		var loc = document.getElementById(item.id).id;
		
		switch(loc)
		{
			case "menuitem1": location.href='aboutus.html'//document.getElementById(item.id).style.backgroundColor='#FF66CC';
				break;
			case "menuitem2": location.href='ourservices.html'
				break;
			case "menuitem3": location.href='catalog.html'
				break;
			case "menuitem4": location.href='contactus.html'
				break;
			default: location.href='index.html';
		}	
	}
	
//-->