$(document).ready(function(){

  $(".infoKiosk").each(function(){
    $(this).prepend("<div class='lt'><div class='rt'></div></div>");
    $(this).append("<div class='lb'><div class='rb'></div></div>");
    $(this).html("<div class='infoBKiosk'>"+$(this).html()+"</div>");
  })

  /////////////////////////////////////////
  // Featured Images kiosk
  /////////////////////////////////////////
  //
  // onclick for <a>
  //
  var ic_params = {contentCurrent:"Image {current} of {total}", contentPrevious:"prev"}
  $("ul#recent_images a").click(function(){
      $("#sel_item").children("*").remove();
      $("div.lightBoxes ul#recent_images .newsImage a").attr("rel","featuredImages");
      $("#sel_item").prepend($(this).parents("li").children("div.newsBody").clone());
      $("ul#recent_images a.thmb_containter img").removeClass("thmb_sel");
      $(this).children("img").addClass("thmb_sel");
      $(this).parents(".newsImageSmall").siblings(".newsImage").children("a").removeAttr("rel");

//      $("div.lightBoxes #sel_item .newsImage a[rel=featuredImages]").colorbox(ic_params,function(){showDownload()});
//      $("div.lightBoxes #sel_item .newsImage a[rel=featuredImagesTitle]").colorbox(ic_params,function(){showDownload()});

      return false;
    });

  //
  // First item is autoselected
  //
  $("div.lightBoxes ul#recent_images .newsImage a.thmb_containter").attr("rel","featuredImages");
  $("#sel_item").prepend($("ul#recent_images a.thmb_containter:first").parents("li").children("div.newsBody").clone());
  $("ul#recent_images .newsImageSmall:first img").addClass("thmb_sel");
  $("ul#recent_images .newsImageSmall:first").siblings(".newsImage").children("a").removeAttr("rel");

  if($("ul#recent_images li").size() == 1) $("ul#recent_images").hide();

});
