$(document).ready(function() {
    // NAVIGATION
    $("#navi a").hover(function() {
        $(this).find(".navi-hover-on").fadeIn(250);
    },
    function() {
        $(this).find(".navi-hover-on").fadeOut(250);
    });
	//VIDEO RECOMMENDATIONS
	$(".recommend-video").click(function() {
		$(".video-send").fadeIn(250);
	});
	$(".white.arrow").click(function() {
	    $(".video-send").fadeOut(250);
	});
	$(".recommend-video").click(function() {
		$(".video-send").fadeIn(250);
	});
	$(".white.arrow").click(function() {
		$(".video-send").fadeOut(250);
	});
	//// ACTIVE CHANNELS
    $("#video-channels li a").click(function() {
	$("#video-channels a").removeClass("active");
        $(this).addClass("active");
    });
	// !! LAST SCRIPT !!
	if (typeof doneJSReady != "undefined") {
		doneJSReady();
	}
});

function reload_parentWin() {                                                                                                                                             
    window.parent.location.reload();                                                                                                                                        
}
