var vid=0;
var videos = new Array ('http://www.youtube.com/v/1fyh1JOwqws', 'http://www.youtube.com/v/59BEgLDo_2g', 'http://www.youtube.com/v/z3lB6BOAyW4');
var so;

function init_video() {
	so = new SWFObject(videos[0], "youtube_video", "374", "240", "6,0,29,0,");
	so.write("youtube_video");
}

function slide_prev() {
	if(vid>0) vid--;
	else vid=2;
	
	show(vid);
}

function slide_next() {
	if(vid<2) vid++;
	else vid=0;
	
	show(vid);
}

function slide_choose(id) {
	vid=id;
	show(vid);
}

function show(id) {
	so = new SWFObject(videos[id], "youtube_video", "374", "240", "6,0,29,0,");
	so.write("youtube_video");

	change_point(id);
}

function change_point(id) {
	document.getElementById('point0').className = '';
	document.getElementById('point1').className = '';
	document.getElementById('point2').className = '';
	
	document.getElementById('point'+id).className = 'active';
}

window.onload = init_video;

/**********************************************************************************************/

// OLD FUNCTIONS //////////////////
/*
function play () {
	if (!splay) {
		ss.next();
		ss.play();
		splay = true;
		document.getElementById('pp_btn').src = 'media/images/buttons/pause.gif';
	} else {
		ss.pause();
		splay = false;
		document.getElementById('pp_btn').src = 'media/images/buttons/play.gif';
	}
}
*/
