/*Easy Slider*/
$(function(){
    $('#siviglia img:gt(0)').hide();
    setInterval(function(){
      $('#siviglia img:nth-child(2)').fadeOut()
         .next('img').fadeIn("slow")
         .end().appendTo('#siviglia');}, 
      5000);
});
$(function(){
    $('#praga img:gt(0)').hide();
    setInterval(function(){
      $('#praga img:nth-child(2)').fadeOut()
         .next('img').fadeIn("slow")
         .end().appendTo('#praga');}, 
      5000);
});
$(function(){
    $('#amsterdam img:gt(0)').hide();
    setInterval(function(){
      $('#amsterdam img:nth-child(2)').fadeOut()
         .next('img').fadeIn("slow")
         .end().appendTo('#amsterdam');}, 
      5000);
});
$(function(){
    $('#istanbul img:gt(0)').hide();
    setInterval(function(){
      $('#istanbul img:nth-child(2)').fadeOut()
         .next('img').fadeIn("slow")
         .end().appendTo('#istanbul');}, 
      5000);
});

/*
$(".ribbon-scadenza").hide();
function blink() {
    $(".ribbon-scadenza").fadeIn(2000, function () {
        $(".ribbon-scadenza").delay(2000).fadeOut(1000, function () {
            $(".ribbon-scadenza").fadeIn(2000);
        });
    } ); 
}

blink();
*/
  

