// JavaScript Document

function initInTV() {
	if ($(".videoSelector:eq(0)").attr("rel")) {
		
		var htmlToCopy = $(".videoClass:eq(0)").html();
		$("#video_contenitor").html(htmlToCopy);
		
		
		$(".videoSelector").click(function() {
			var rel = $(this).attr("rel");
			var htmlToCopy = $(".videoClass[ref="+rel+"]").html();
			$("#video_contenitor").html(htmlToCopy);
			$(".videoSelector").filter(function() {
				return $(this).css("display") == "none";									
			}).css("display","block");
			$(this).css("display","none");
		});
	}
}

