var aN = 1;
$().ready(function() {
	StartAutoSelect();
});

function StopAutoSelect() {
	clearInterval(document.intervalID);
}

function StartAutoSelect() {
	clearInterval(document.intervalID);
	document.intervalID = setInterval(AutoSelect, 5000);
}

function AutoSelect() {
	showNews(aN);
}

function showNews(k) {
	$('#nav li').each( function() {
		$(this).removeClass('selected');
	}); 
	$('#hnews-'+k).addClass('selected');
	var html = $('.ln-'+k).html();
	var elm = html.split(',');
	
	$('#mainNews').html('');
	
	if (elm[2] == undefined)
		$('#mainNews').html(html);
	else {
		$('#mainNews').html('<div id="video"></div>');
		
		showVideo(elm[0], elm[1], elm[2]);
	}
	
	var aP = 0;
	if ( k == 0 ) {
		aP = 7;
		aN = 1;
	}
	else if ( k == 7 ) {
		aP = 1;
		aN = 0;
	}
	else {
		aP = k - 1;
		aN = k + 1;
	}
	
	$('#hnPrev').attr('href', 'javascript: showNews('+aP+');');
	$('#hnNext').attr('href', 'javascript: showNews('+aN+');');
}

function showVideo(id, dir, title) {
	var flashvars = {
			file: "/uploads-"+LANG+"/video/"+dir+id+".flv",
			image: "/uploads-"+LANG+"/video/"+dir+id+".jpg",
			title: title,
			plugins: "counttrackula-1,gapro-1",
			skin: "/videosystem/golf-skin/golf.xml",
			'counttrackula.prevsecs': "30",
			'counttrackula.dom': "/videoCallback.php?id="+id,
			'gapro.accountid': 'UA-10836575-2'
		};
		var params = {
			allowfullscreen: "true",
			allowscriptaccess: "always",
			allownetworking: "all",
			enablejs: "true",
			javascriptid: "videoplayer"
		};
		var attributes = {
			id:"player1",
			name:"player1"
		};
		swfobject.embedSWF("/videosystem/player-licensed.swf", "video", "630", "362", "10.0.0", "/javascript/expressInstall.swf", flashvars, params, attributes);
}
