$(document).ready(function() {

	if ( $("#video_swf_player").css("width") != undefined ) {

		$f("video_swf_player", "http://www.keratokonustedavileri.com/videos/player/flowplayer-3.0.6.swf", {clip:{baseUrl:'http://www.keratokonustedavileri.com/videos/player/streams', autoPlay:false, autoBuffering:false}});

		var $anchors = $("#tv_programs_tbl a");
		$("#video_swf_player_holder").css({display:"none"});

		$anchors.click(function(){

			var i = $anchors.index(this);
			var h = $(this).attr("href");
			var t = $(this).attr("title");

			$anchors.removeClass("selected");
			$anchors.eq(i).addClass("selected");

			var player = $f("video_swf_player");
			$("#video_title_fp").html(t);

			//$("#video_swf_player_holder").css({display:"block"});

			$("#video_swf_player_holder").fadeIn("slow", function(){
				$f().play(h);
			});

			return false;
		});

		$("#video_swf_player_holder_close_button").click(function(){
			$("#video_swf_player_holder").css({display:"none"});
			//player.stop();
		});
	}
});

