var currentNewsIndex = 0;
function news_goto(index)
{
	var newsMax = $(".roundBtn").length - 1;
	if( index > newsMax ) index = newsMax;
	else if( index <= 0 ) index = 0;
	
	if( currentNewsIndex != index )
	{
		var d1 = "left";
		var d2 = "right";
		if( index > currentNewsIndex )
		{
			d1 = "right";
			d2 = "left";
		}
		$(".news_page").each(
				function(i){
					var div = $(this);
					div.css("display", "none");
					if( i == index )
					{
						div.show("slide", {direction: d1});
					}
					if( i == currentNewsIndex )
					{
						div.hide("slide", {direction: d2});
					}
				});
		
		$(".roundBtn").each(
				function(i){
					var btn = $(this);
					btn.removeClass("n_selected");
					if( i == index )
					{
						btn.addClass("n_selected");
					}
				});

		currentNewsIndex = index;
		if( currentNewsIndex == 0 ) $(".prevBtn").addClass("onLeft");
		else $(".prevBtn").removeClass("onLeft");
		
		if( currentNewsIndex == newsMax ) $(".nextBtn").addClass("onRight");
		else $(".nextBtn").removeClass("onRight");
	}
}

function news_next()
{
	news_goto( currentNewsIndex + 1 );
}
function news_prev()
{
	news_goto( currentNewsIndex - 1 );
}
var flashvars = {
	id:"player",
	autoPlay:"true",
	logo:"true",
	logoUri:"http://www.livingactor.com",
	controlbar:"true",
	autoResize:"true",
	fullScreen:"false",
	timeCurrent:"false",
	timeTotal:"true",
	verticalSpot:"true",
	facebook:"true",
	twitter:"true",
	middle_play:"wait",
	url:"{prefix}"
	};
var params = {
  menu: "false",
  wmode:"opaque",
  bgcolor:"#000000",
  allowScriptAccess : "always",
  allowFullScreen: "true"
};
var attributes = {
  id: "player",
  name: "player"
};
