
$(document).ready(function() {
	//Show the first video data
	$("img#flv_1").attr("src", "/modules/flv_player/media/images/button_1_active.gif");
	$("div#flvStage").html("<img src='/modules/flv_player/media/images/" + thumbnail1 + "' alt='topper' />");
	$("p.descriptionValue").text(description1);

	//Mouseover function
	$('.playerButton').mouseover(function() {
		//Get the number from the button ID
		var id = $(this).attr("id").replace("flv_", "");
		//Remove buttons
		$('.playerButton').each(function() {
			$(this).attr("src", $(this).attr("src").replace("_active", ""));
		});
		
		//Set new active button
		var img = parseInt(id);
		$('img#flv_'+id).attr("src", "/modules/flv_player/media/images/button_"+ img +"_active.gif");
		
		//Set Viewer Thumbnail
		var thumbnail = eval("thumbnail"+id);
		$("div#flvStage").html("<img src='/modules/flv_player/media/images/" + thumbnail + "' alt='topper' />");
		
		//Set Description Text
		var description = eval("description"+id);
		$("p.descriptionValue").html(description);
	});
	
	//Click function
	$('.playerButton').click(function() {
		//Get the number from the button ID
		var id = $(this).attr("id").replace("flv_", "");
		
		//Place video in View
		var video = eval("video"+id);
		$("div#flvStage").html("<object width='361' height='344'><param name='movie' value='"+video+"'></param><param name='allowFullScreen' value='true'></param><embed src="+video+" type='application/x-shockwave-flash' allowfullscreen='true' width='361' height='344'></embed></object>");
	});
});
