function InstallKaraoke() {
	$('#readas span').each(function(i) {
		this.id = 'readas_' + i.toString();
	});
	var last_top = -50;
	$('#youaddress span').each(function(i) {
		if (this.offsetTop != last_top) {
			last_top = this.offsetTop;
			this.style.borderLeft = '1px solid #FF9CCC';
		}
		this.number_p_p = i;
	}).mouseover(function() {
		$('#readas span').removeClass('hovered');
		$('#youaddress span').removeClass('hovered');
		
		$('#readas_'+this.number_p_p.toString()).addClass('hovered');
		this.className = 'hovered';
	}).mouseout(function() {
		$('#readas span').removeClass('hovered');
		$('#youaddress span').removeClass('hovered');
	});
}
function InstallSponsors() {
	var urls = ['http://www.stratero.ru/', 'http://www.lradio.ru/'];
	//$('#intelegence img').each(function(i){this._href=urls[i];}).mousedown(function(){location.href=this._href;});
}

$(function() {
	InstallKaraoke();
	InstallSponsors();
});