function toggle(item,linknum) {
	var buttons = new Array("inventory","about","resources","parts","affiliates");
	var butlinks = new Array('<strong>INVENTORY &raquo;</strong> <a href="#" title="" />New Wreckers</a> | <a href="#" title="" />New Rollbacks</a> | <a href="#" title="" />Used Wreckers</a> | <a href="#" title="" />Used Rollbacks</a>',
														'<strong>ABOUT US &raquo;</strong> <a href="#" title="" />Who we Are</a> | <a href="#" title="" />Our location</a> | <a href="#" title="" />Our History</a> | <a href="#" title="" />Our Staff</a>',
														'<strong>RESOURCES &raquo;</strong> <a href="#" title="" />Wrecker/Rollback Maintenance</a> | <a href="#" title="" />Towing and Recovery Guide</a> | <a href="#" title="" />Choosing your Vehicle</a>',
														'<strong>PARTS &raquo;</strong> For all your wrecker/rollback repairs, <a href="#" title="" />visit our Online Parts and Service Store!</a>',
														'<strong>AFFILIATES &raquo;</strong> <a href="#" title="" />The Car Hauler Superstore</a> | <a href="#">East Coast Auto Transport</a> | <a href="#">Truck Lettering and Graphics</a>')
	var thebutton=document.getElementById(item);
	document.getElementById("section").innerHTML = butlinks[linknum];
		for(var i=0; i<buttons.length; i++) {
	document.getElementById(buttons[i]).style.backgroundPosition="0px 0px";
	document.getElementById(buttons[i]).className=buttons[i];
				if(buttons[i]=thebutton){thebutton.style.backgroundPosition="0px -24px";  }
		}

}

var timer;
var cancel;

function rollover(item) {
  cancel=true;
  window.clearTimeout(timer);
  dropdown=document.getElementById(item);
	if (item=="inv_dropdown") { document.getElementById('about_dropdown').style.display="none"; document.getElementById('resources_dropdown').style.display="none"; }
	if (item=="about_dropdown") { document.getElementById('inv_dropdown').style.display="none"; document.getElementById('resources_dropdown').style.display="none"; }
	if (item=="resources_dropdown") { document.getElementById('inv_dropdown').style.display="none"; document.getElementById('about_dropdown').style.display="none"; }
  dropdown.style.display="block";
}

function hideit(item) {
  timer = setTimeout ('hideall()', 500);
}
function hideall() { document.getElementById('about_dropdown').style.display="none"; document.getElementById('inv_dropdown').style.display="none"; document.getElementById('resources_dropdown').style.display="none"; cancel=false;
}
