	function car_hover(car_box, bord)
	{
		//alert(car_box);
		document.getElementById(car_box).style.background="url(/images/suzuki2008/car_menu/car_menu_hover_left.gif) no-repeat";
		if (bord=="first")
		{
			document.getElementById("left_td").style.background="url(/images/suzuki2008/car_menu/car_menu_hover_left_first.gif) no-repeat";
		}
		if (bord=="last")
		{
			document.getElementById("right_td").style.background="url(/images/suzuki2008/car_menu/car_menu_hover_right_last.gif) no-repeat";
		}
	}
	
		function car_out(car_box, bord)
	{
		
		if (bord=="first")
		{
			document.getElementById("left_td").style.background="url(/images/suzuki2008/car_menu/car_menu_left.gif) no-repeat";
		}
		
		if (bord!="last")
		{
			document.getElementById(car_box).style.background="url(/images/suzuki2008/car_menu/car_div.gif) no-repeat right 7px";		
		}
		else
		{
			document.getElementById(car_box).style.background="";
			document.getElementById("right_td").style.background="url(/images/suzuki2008/car_menu/car_menu_right.gif) no-repeat";
		}

	}
	
	function show_sub_cars()
	{	
		if (document.getElementById("sub_cars_front_1").clientHeight<105)
		{
			document.getElementById("sub_cars_front_1").style.height=document.getElementById("sub_cars_front_1").clientHeight+5+"px";
			setTimeout('show_sub_cars()',40);
		}
	}	
	
	function car_down(car_box, bord)
	{
		//alert(car_box);
		document.getElementById(car_box).style.background="url(/images/suzuki2008/car_menu/car_menu_mousedown_left.gif) no-repeat";
		if (bord=="first")
		{
			document.getElementById("left_td").style.background="url(/images/suzuki2008/car_menu/car_menu_mousedown_left_first.gif) no-repeat";
		}
		if (bord=="last")
		{
			document.getElementById("right_td").style.background="url(/images/suzuki2008/car_menu/car_menu_mousedown_right_last.gif) no-repeat";
		}
	}
	
	function car_up(car_box, bord)
	{
		document.getElementById(car_box).style.background="";		
		//car_box.firstChild.className="car_link car_div";		
		if (bord=="first")
		{
			document.getElementById("left_td").style.background="";
		}
		if (bord=="last")
		{
			document.getElementById("right_td").style.background="";
		}
	}
	
	function flashmove(num)
	{ 
		t=setTimeout(function()
		{
			document['FlashMovie'].SetVariable('/:wantCarNum', num);
		}, 1000);
		
	}
	
	function stopmove()
	{
		clearTimeout(t);
	}
