/*
 Config
 */
var slideItemWidth  =   150;
var slideMarginLeft =   70;
var rStart=0;
var itemPS=3;


function customsearch(){
    var keyword =   $('#searchword').val();
    if(keyword.length>0) window.location='/search/'+keyword;
    return false;
}
var currentNews=0;
var maxNews=0;
var onItemSelect=false;
function enableItemSelect(){
    onItemSelect=false;
    clearTimeout(timer);
    timer=setTimeout("showItem('auto')",3000);
    return false;
}
function stopSlide(){
    
    onItemSelect=true;
    clearTimeout(timer);
}
function continueSlide(){
    onItemSelect=false;
    timer=setTimeout("showItem('auto')",3000);
}
var timer;
function showItem(i,userhover){
    var d=new Date();
    if(onItemSelect) return false;
    //mo cai nao?
    if(i=='auto') {
        i=currentNews+1;   
    }
    if(i>=maxNews){
        i=0;
    }    
    currentNews=i;
    $('.plasItem').hide();
    $('#plas-'+i).fadeIn();
    
    
    $('.iphoneItem').hide();
    $('#iphone-'+i).slideDown();    
    
    $('.circleactive').removeClass('circleactive');
    $('#plasa-'+i).addClass('circleactive');
    $('#iphonea-'+i).addClass('circleactive');    
    $('#iphonePlay').attr('href',$('#plasLink-'+i).attr('href'));
    
    if(userhover) stopSlide();
    else continueSlide();    
}
$(document).ready(function(){
    $('input[type=button]').button();
    $("input[type=text],input[type=email],input[type=password]").addClass("text ui-widget-content ui-corner-all");
    
    currentNews=0;
    maxNews=$('#plasUL li').size();
    showItem(0);
    
    $('#loading').remove();
    //slider effect
    $('.thumb').each(function(){
       var itemID   =  '#'+this.id;
       var max  =  $(itemID+'-max').val();
       $(itemID+'-prev').css('background-position','-82px 0');;
       if(max<=itemPS){
        //it item qua thi bo xu 2 cai nut di chuyen di            
            $(itemID+'-next').css('background-position','-123px 0');
       } 
       $(this).css('width',(slideItemWidth+5)*max+'px');  
    });
    $('#temper').remove();
   mov();
   $('.top_new_pl').mouseover(function (){
  		$(this).stop();
  	});
   mov_film();
   $('.top_film').mouseover(function (){
  		$(this).stop();
   });
   $("#searchword").autocompletesearch("/includes/inc_auto_search.php", {
		width: 400,
		matchContains: true,
		//mustMatch: true,
		//minChars: 0,
		//multiple: true,
		//highlight: false,
		//multipleSeparator: ",",
		selectFirst: false
	});
  
  $('#friendLink').before('<div class="fb-like-box" data-href="http://www.facebook.com/pages/Video-24h/265535756803773" data-width="285" data-show-faces="true" data-border-color="#39f" data-stream="false" data-header="true"></div>');
  d = document;
  var js, id = 'facebook-jssdk'; 
  if (d.getElementById(id)) {return;}
  js = d.createElement('script'); 
  js.id = id; 
  js.async = true;
  js.src = "//connect.facebook.net/en_US/all.js#xfbml=1";
  d.getElementsByTagName('head')[0].appendChild(js);
            
   
});

	
 var numb=0;
 function mov(){
  var cmt=$('.top_new_pl').css('marginTop');
  var strcmt = cmt.substr(0,cmt.length-2);
  var newmgt=parseInt(strcmt)-310;
  $('.top_new_pl').animate({marginTop:newmgt},1000,'',ape);
  
  setTimeout(mov,4000);
 }
 function ape(){
  $('.top_new_pl').css('marginTop',0);
  for(var i=numb;i<numb+2;i++){
  	//console.log('.pl_new_info_'+i);
   $('.top_new_pl').append($('.pl_new_info_'+i));
  }
  numb+=2;
  if(numb>18)numb=0;
 }
 
 var numbi=0;
 function mov_film(){
  var cmt=$('.top_film').css('marginTop');
  var strcmt = cmt.substr(0,cmt.length-1);
  var newmgt=parseInt(strcmt)-265;
  $('.top_film').animate({marginTop:newmgt},1000,'',ape_film);
  
  setTimeout(mov_film,5000);
 }
 function ape_film(){
  $('.top_film').css('marginTop',0);
  for(var i=numbi;i<numbi+1;i++){
   $('.top_film').append($('.film_info_'+i));
  }
  numbi+=1;
  if(numbi>4)numbi=0;
 }
