var base_channel_img_url = "/app/guidatv/images/epgimages/channels/";
var base_channel_data_url = "/app/guidatv/contenuti/data/grid/";
var base_channel_page_url = "/guidatv/canale/"
var base_programme_page_url = "/guidatv/programma/"

var time_slide_step = 520;//4 hours
var time_slide_left_limit = -3554;
var time_slide_right_limit = 0;
var show_event_popup = false;

var currentDate = new Date();
var currentTime = currentDate.getHours();

var time_slide_moment={
  "mattina": -1040,
  "pomeriggio": -1690,
  "serata": -2730,
  "notte": -3455,
  "now": -currentTime*144
};

jQuery().ready(function(){

  jQuery('.timeline_grid .back a').click(function(){slide_left()});
  jQuery('.timeline_grid .next a').click(function(){slide_right()});

  show_event_popup = false;//activate showGridEvent()
  show_channelpage_link = true;//active channel page links
  progressive_load = false;//allchannels shown immediately
  setDate(currentDate);
  init_fascia_menu();
  load_channels("mini");
  slide_to("now");
});

function init_fascia_menu(){
  jQuery('#fascia_butt').click(function(){jQuery("#fascia_menu").show()});
  jQuery('#fascia_menu .sel').click(function(){jQuery("#fascia_menu").hide()});
  jQuery('#fascia_menu .now').click(function(){jQuery("#fascia_menu").hide();slide_to("now")});
  jQuery('#fascia_menu .mattina').click(function(){jQuery("#fascia_menu").hide();slide_to("mattina")});
  jQuery('#fascia_menu .pomeriggio').click(function(){jQuery("#fascia_menu").hide();slide_to("pomeriggio")});
  jQuery('#fascia_menu .serata').click(function(){jQuery("#fascia_menu").hide();slide_to("serata")});
  jQuery('#fascia_menu .notte').click(function(){jQuery("#fascia_menu").hide();slide_to("notte")});
}

