if (top.location != location) top.location.href = document.location.href ;



function hot_next()
{
	hot_to(hot_current == hotspot_articles-1 ? 0 : hot_current+1);
	return;

	$("hot_image_slot").src = hot_pics[hot_current];
	$("hot_url_title").innerHTML = hot_titles[hot_current];
	$("hot_url_title").href = hot_urls[hot_current];
	$("hot_url_more").href = hot_urls[hot_current];
	$("hot_url_image").href = hot_urls[hot_current];
	//$("hot_text").innerHTML = hot_text[hot_current];
	$("hot_current").innerHTML = hot_current+1;

	// if(typeof Hyphenator == 'object') Hyphenator.run();
}

function hot_prev()
{
	hot_to(hot_current == 0 ? hotspot_articles-1 : hot_current-1);
	return;

	$("hot_image_slot").src = hot_pics[hot_current];
	$("hot_url_title").innerHTML = hot_titles[hot_current];
	$("hot_url_title").href = hot_urls[hot_current];
	$("hot_url_more").href = hot_urls[hot_current];
	$("hot_url_image").href = hot_urls[hot_current];
	//$("hot_text").innerHTML = hot_text[hot_current];
	$("hot_current").innerHTML = hot_current+1;

	// if(typeof Hyphenator == 'object') Hyphenator.run();
}


function rot_next(j)
{
	rot_current[j]++;
	if(rot_current[j] >= rot_articles[j] ) rot_current[j] = 0;

	rot_change(j);
}

function rot_prev(j)
{
	rot_current[j]--;
	if(rot_current[j] < 0) { rot_current[j] = rot_articles[j]; rot_current[j]--; }

	rot_change(j);
}

function rot_change(j)
{
	eval("rot_pics = rot_pics_" + j);
	eval("rot_titles = rot_titles_" + j);
	eval("rot_text = rot_text_" + j);
	eval("rot_urls = rot_urls_" + j);

	document.getElementById('rot_image_slot_' + (j)).src = rot_pics[rot_current[j]];
	document.getElementById('rot_image_slot_' + (j)).alt = rot_titles[rot_current[j]];
	document.getElementById('rot_url_title_' + (j)).innerHTML = rot_titles[rot_current[j]];
	document.getElementById('rot_url_title_' + (j)).title = rot_titles[rot_current[j]];
	document.getElementById('rot_url_title_' + (j)).href = rot_urls[rot_current[j]];
	document.getElementById('rot_url_more_' + (j)).href = rot_urls[rot_current[j]];
	document.getElementById('rot_url_image_' + (j)).href = rot_urls[rot_current[j]];
	document.getElementById('rot_url_image_' + (j)).title = rot_titles[rot_current[j]];
	document.getElementById('rot_text_' + (j)).innerHTML = rot_text[rot_current[j]];

}

