jQuery(document).ready(function($) {
    //$(".videos .inactive .video").hide();
    
    $("#sidebar .slider ul").cycle({
    	fx:			'scrollLeft',
    	timeout:	6000,
    	pause:		1
    });
    
    $(".videos h3").click(function() {
   		//$(".videos .active .video").hide();
   		//$(".videos .inactive .video").show();
   		if($(this).parent().hasClass("active")) return false;
   		$(".videos li").toggleClass("active");
   		$(".videos li").toggleClass("inactive");
   		$.cookie('active_video', $(this).text());
   		return false;
    });
    
    var active_video = $.cookie('active_video');
    //alert(active_video);
    if (active_video == 'Youku') {
    	$(".videos .inactive h3").click();
    }
});