//Функция перемещения полоски хотсов
function hots_go(dir){

	if(dir=='left'){
		if(parseInt(h.style.left)!=0){
			h.style.left=parseInt(h.style.left)+145;
		}
		if(h.clientWidth+parseInt(h.style.left)>725){
			hr.src='/i/right_a.gif';
		}
		if(parseInt(h.style.left)==0){
			hl.src='/i/left.gif';
		}
	}

	if(dir=='right'){
		if(h.clientWidth+parseInt(h.style.left)>875){
			h.style.left=parseInt(h.style.left)-145;
		}
		if(parseInt(h.style.left)<0){
			hl.src='/i/left_a.gif';
		}
		if(h.clientWidth+parseInt(h.style.left)<=875){
			hr.src='/i/right.gif';
		}
	}
}

//Функция переключения полоски хотсов
function hots_switch(name){

	var h_auto=document.getElementById('hot_auto');
	var h_moto=document.getElementById('hot_moto');
	var h_spare=document.getElementById('hot_spare');
	var moto_hot=document.getElementById('moto_hot');
	var auto_hot=document.getElementById('auto_hot');
	var spare_hot=document.getElementById('spare_hot');

	if(name=='moto'){
		h=h2;
		h_auto.style.display='none';
		h_moto.style.display='block';
		h_spare.style.display='none';
		auto_hot.style.cssText='';
		moto_hot.style.cssText='font-size: 14px; font-weight: bold;';
		spare_hot.style.cssText='';
	}

	if(name=='auto'){
		h=h1;
		h_auto.style.display='block';
		h_moto.style.display='none';
		h_spare.style.display='none';
		auto_hot.style.cssText='font-size: 14px; font-weight: bold;';
		moto_hot.style.cssText='';
		spare_hot.style.cssText='';
	}

	if(name=='spare'){
		h=h3;
		h_auto.style.display='none';
		h_moto.style.display='none';
		h_spare.style.display='block';
		auto_hot.style.cssText='';
		moto_hot.style.cssText='';
		spare_hot.style.cssText='font-size: 14px; font-weight: bold;';
	}

}
