// CCTV
// CampbellHay Commands Those Videos
// (c) 2010 Mickael Riga
var img_location='/layout_images/cctv_control.gif';(function(){jQuery.fn.cctv_control=function(){return this.css({textDecoration:'none',width:'20px',height:'20px',display:'block',backgroundImage:'url('+img_location+')',backgroundRepeat:'no-repeat',backgroundPosition:'left top',}).hover(function(){$(this).css('opacity',0.5)},function(){$(this).css('opacity',1)})};jQuery.fn.cctv_play=function(){return this.data('on_pause','false').css('backgroundPosition','-20px 0px')};jQuery.fn.cctv_pause=function(){return this.data('on_pause','true').css('backgroundPosition','0px 0px')};jQuery.fn.cctv_mute=function(){return this.data('muted','true').css('backgroundPosition','-40px 0px')};jQuery.fn.cctv_sound=function(){return this.data('muted','false').css('backgroundPosition','-60px 0px')}})();$(function(){var k=null;$('.yt_player').each(function(){var c=$(this);var d=c.attr('rel').split(':');c.flash({swf:"http://www.youtube.com/apiplayer?&enablejsapi=1&version=3&playerapiid="+c.attr('id'),width:d[1],height:d[2],allowscriptaccess:'always'});c.click(function(){return false}).css({'display':'block','font-size':'0px'});var f=c.find('object').get(0);if(f){var g=$("<div class='player_commands'>").css({padding:'5px',width:(d[1]-10)+'px',height:'20px',position:'relative',backgroundColor:'black',color:'white',fontSize:'15px',lineHeight:'20px',letterSpacing:'2px'}).mousemove(function(e){if(k){var a=$(k);var b=a.data('left')+(e.pageX-a.data('cursor_left'));if(b<30){b=30}else if(b>(d[1]-30)){b=(d[1]-30)}k.style.left=b+'px';return false}}).mouseup(function(){if(k){var a=$(k);k=null;var b=(a.position().left-30)*f.getDuration()/(d[1]-60);f.seekTo(b,true);f.playVideo();a.prevAll('.cctv_btn_play').cctv_play()}}).insertAfter(c);var h=$("<a href='#' class='cctv_btn_play'></a>").cctv_control().cctv_pause().appendTo(g).click(function(){if(typeof f.getPlayerState!='function'){}else if(f.getPlayerState()==1){f.pauseVideo();$(this).cctv_pause()}else{if(c.prev().is('.yt_still'))c.prev().hide();if(f.getPlayerState()==0||f.getPlayerState()==5)f.seekTo(0,true);f.playVideo();$(this).cctv_play()}return false});var i=$("<a href='#' class='cctv_btn_mute'></a>").cctv_control().cctv_sound().css({position:'absolute',top:'6px',right:'5px'}).appendTo(g).click(function(){if(typeof f.getPlayerState!='function'){return false}else if(f.getPlayerState()==1){if(f.isMuted()){f.unMute();$(this).cctv_sound()}else{f.mute();$(this).cctv_mute()}}return false});$("<div class='player_back_gauge'>").css({position:'absolute',top:'15px',left:'30px',height:'1px',width:(d[1]-60)+'px',backgroundColor:'gray'}).appendTo(g);var j=$("<div class='player_handle'></div>").css({position:'absolute',top:'12px',left:'30px',height:'7px',width:'7px',backgroundColor:'white',display:'block'}).appendTo(g).hover(function(){this.style.backgroundColor='gray'},function(){this.style.backgroundColor='white'}).mousedown(function(e){k=this;var a=$(this);a.data('left',a.position().left);a.data('cursor_left',e.pageX);return false}).click(function(){return false}).hide();setInterval(function(){if(typeof f.getPlayerState!='function'){return false}else{if(f.getPlayerState()>0&&f.getPlayerState()<=2){var a=Math.round((d[1]-60)*f.getCurrentTime()/f.getDuration());j.show();if(j.get(0)!=k){j.css('left',((a)+30)+'px')}if(f.getPlayerState()==1&&h.data('on_pause')=='true'){h.cctv_play()}}else if(f.getPlayerState()==0){if(h.data('on_pause')=='false'){h.cctv_pause()}}}},'250')}});$('.yt_still').each(function(){var a=$(this);a.css({position:'absolute',display:'none',marginTop:'4px'});var b=a.next().find('object').get(0);if(b){a.show();a.click(function(){a.hide();b.playVideo()})}});$('.alt').hide()});function onYouTubePlayerReady(a){var b=$('#'+a+' object');var c=b.get(0);c.cueVideoById($('#'+a).attr('rel').split(':')[0])}$(window).unload(function(){$('object').remove()});


