$(document).ready(function() {
	// Show/hide equipment submenu
	$("#link_equipment").mouseover(
		function() {
			$("#link_newused").fadeIn(500);
		});
//	$("body").click(
//		function() {
//			$("#link_newused").fadeOut(500);
//		});
	
	// Equipment naviation
	$("div.nav_links").mouseover(
		function() {
			$("#link_newused").fadeOut(500);
		});
	$("#link_newused table tr td").mouseover(
		function() {
			$(this).css("backgroundColor", "#CB6240");
			$(this).children().css("color", "#FFFFFF");
		});
	$("#link_newused table tr td").mouseout(
		function() {
			$(this).css("backgroundColor", "#FFFFFF");
			$(this).children().css("color", "#8A8B90");
		});
	
	// Equipment display tables
	$("#equipment_view tr:even").addClass("alt");
	
});
