function getthedate(){
  var mydate=new Date();
  var hours=mydate.getHours();
  if(hours < 18 && hours > 6)
  {
    //alert("daytime!");
  }
  else
  {
//    alert("nighttime!");
  }
  //alert(hours);
  
  //hours = 19;
  
  $.ajax({
    type: "POST",
    url: "/components/index/module_name/index/component/loadFlash/hours/" + hours,
    beforeSend: function () { urchinTracker("/components/index/module_name/index/component/loadFlash/hours/" + hours); },  
    success: function(xmlData){
      $('#flashIndex').html(xmlData);
    }
  });
  
  return hours;
}
/*
$(document).ready(function(){
  getthedate();
});*/