$(function() {
  if(KKBOX.terr =='TW' || KKBOX.terr=='HK')
   // KKBOX.focusAD();
  //else
    KKBOX.lightboxAD();
});
  
//2010.09.02 蘋果AD專案
KKBOX.focusAD = function(){
  var now=new Date();
  var today = now.getDate();

  var start = new Date(2011,8,2,8,0,0);
  var end   = new Date(2011,8,4,23,59,59);
  var changeTime = new Date(2011,8,3,8,0,0); //換圖時機
  var cookie_val = 'focusAD'+today+KKBOX._AP;
  if(now>=changeTime){
    cookie_val = 'focusAD'+today+'-2'+KKBOX._AP;
  }
  if(now>=start && now<=end && (!$.cookie(cookie_val)) ){
    //open lightbox set cookie and set click
    $.colorbox({
      innerWidth:706,
      innerHeight:500,
      href:function(){
	  return "/leading_page/201009focusAD.shtml";
      },
      onComplete:function(){
	//default :web
	var box_click='8749ce96';
	var main_img_click='a79db528';  // 本月焦點=>artist more
	var column_click='dcd942bb';    //獨家揭露=>文章
	var go_url='';
	if (!$('#func_frame').length) {
	  $('<iframe id="func_frame" frameborder="0" scrolling="NO" marginheight="0" marginwidth="0" style="height:1px;width:0px;"></iframe>').appendTo('body');                 }
	if(KKBOX._AP!='WEB'){
	  n_img_click='36f39787';
	  column_click='62884244';
	  box_click = '2b6cbfa4';
	}
	go_url = "/click.php?from=";
	$('#main_url').attr("href",go_url+ main_img_click);
	$('#column_url').attr("href",go_url+ column_click);
	if((!$.cookie(cookie_val)))
	  $('#func_frame').attr("src", go_url+box_click);
	if(now>=changeTime){
	  $('#column_url').css('background-image', 'url(/leading_page/img/mayday_B_02.gif)');
	}
	$.cookie(cookie_val,1,{ expires: 1, path: '/' ,domain: '.kkbox.com'});//set cookie
      }
    });//end box
  }
}

//2012.01.14 風雲榜live lightbox
KKBOX.lightboxAD = function(){
  var now=new Date();
  var is_valid = 0;
  var start = new Date(2012,00,14,00,00,00);
  var end   = new Date(2012,00,15,19,00,00);

  var cookie_val = 'focuslightbox' + KKBOX.terr +((start.getMonth()+1) > 9 ? '':'0')+ (start.getMonth()+1) + (start.getDate() > 9 ? '':'0') + start.getDate() + KKBOX._AP;
  if(now>=start && now<=end && (!$.cookie(cookie_val))) {
    //if(KKBOX.terr == 'TW')
      var box_url = "/leading_page/2011kdma_liveAD.shtml";
    //else
      //var box_url ="/leading_page/2011kdma_lightboxAD_hk.shtml";
    var is_valid = 1;
    var cookie_name = cookie_val;
  }
  if(is_valid==1){
    $.colorbox({
	innerWidth:700,
	innerHeight:500,
	href:function(){
	  return box_url;
	},
	onComplete:function(){
	  //if(KKBOX.terr == 'TW'){
	    if(KKBOX.MYBOX_VER=='MYBOX6')
	      var img="b7d8fd4e&pno=0_351&pcomment=livestream&_server=m6";
	    else
	      var img="b7d8fd4e&pno=0_351&pcomment=livestream";
	  /*}else{
	    if(KKBOX.MYBOX_VER=='MYBOX6')
	      var img="45cd243f&pno=0_351&pcomment=hk_lightox_1&_server=m6";
	    else
	      var img="45cd243f&pno=0_351&pcomment=hk_lightox_1";
	  }*/
	  var go_url='';
	  if (!$('#func_frame').length) {
	    $('<iframe id="func_frame" frameborder="0" scrolling="NO" marginheight="0" marginwidth="0" style="height:1px;width:0px;"></iframe>').appendTo('body');                }
	  go_url = "/click.php?from=";  //連結要另開視窗的話，go_url就要填完整網址
	  //$('#img_url').attr("href",go_url+ img).attr("target", "_blank");
	  $('#img_url').attr("href",go_url+ img);

	  //$.cookie(cookie_name,1,{ expires: end, path: '/' ,domain: '.kkbox.com'});//set cookie，時間內只跳一次
	  $.cookie(cookie_name,1,{ expires: 1, path: '/' ,domain: '.kkbox.com'});//set cookie，一天跳一次
	},
	onClosed: function() {
	  //$.cookie(cookie_name,1,{ expires: end, path: '/' ,domain: '.kkbox.com'});//set cookie，時間內只跳一次
	  $.cookie(cookie_name,1,{ expires: 1, path: '/' ,domain: '.kkbox.com'});//set cookie，一天跳一次
	}
    });
  }
}

