
    arr_news = Array();
    arr_news[0] = "news_6.html";
    arr_news[1] = "news_7.html";
    arr_news[2] = "news_8.html";
 // arr_news[3] = "news_3.html";
 // arr_news[4] = "news_1.html";
 // arr_news[5] = "news_2.html";
 // arr_news[6] = "news_4.html";
 // arr_news[7] = "news_5.html";

int_currentNews = 0;

function nextNews(int_offset) {
	if ((int_currentNews + int_offset) < 0)
	{
		int_currentNews = arr_news.length -1;
	}
	else if ((int_currentNews + int_offset) > arr_news.length -1)
	{
		int_currentNews = 0;
	}
	else 
	{
		int_currentNews = int_currentNews + int_offset;
	}
	
	myLightWindow.activateWindow({
		href: arr_news[int_currentNews], 
		width: 500,
		height: 420,
		type: "external",
		iframeEmbed: true
	});
}

jQuery.noConflict();

jQuery(document).ready(function()
{
	
	jQuery(".entry a[target=_blank]").click(function() 
	{
		var hdl_print = window.open(jQuery(this).attr("href"), '', "top=" + ((screen.height / 2) - 375) + " , left=" + ((screen.width / 2) - 400) + ", width=680, height=580, location=no, menubar=no, resizable=no, status=no, toolbar=no, scrollbars=no");
		
		return false;
	});
});


