var htime = null;
var hcolor = 0;

function hilite_price(){
	if (htime) {
		clearTimeout(htime);
	}
	if (hcolor) {
		document.getElementById("price_link").style.color = '#333333';
		hcolor = 0;
		htime = setTimeout("hilite_price()", 600);	
	}else{
		document.getElementById("price_link").style.color = '#ffffff';
		hcolor = 1;
		htime = setTimeout("hilite_price()", 30);	
	}
}

var timer = null;
var back_pos = 0;
function scroll_projects(){
	var p = document.getElementById('projects');
	p.style.backgroundPositionX = back_pos+'px';
	back_pos++;
	timer = setTimeout("scroll_projects()", 50);
}
//timer = setTimeout("scroll_projects()", 50);

function add_bookmark() {
	if ( ( navigator.appName == "Microsoft Internet Explorer" ) && ( parseInt( navigator.appVersion ) >= 4 ) )
		window.external.AddFavorite ( this.location, document.title );
	else
		alert("Нажмите CTRL-D чтобы добавить сайт в закладки");
}

window.onload = hilite_price;
