$(document).ready(function() {

  /////////////////////////////////////////
  // Featured Images kiosk
  /////////////////////////////////////////
  //
  // onclick for <a>
  //
  $("ul#recent_images a").click(function(){
      $("#sel_item").children("*").remove();
      $("ul#recent_images .newsImage a").attr("rel","featured");
      $("#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");

/*
        $("#sel_item .newsImage a[rel=featured]").colorbox({
        iframe:true,
        fixedWidth:"700px", 
        fixedHeight:"550px"
      });
*/

      return false;
    });

  //
  // First item is autoselected
  //
  $("ul#recent_images .newsImage a.thmb_containter").attr("rel","featured");
  $("#sel_item").prepend($("ul#recent_images a.thmb_containter:first").parents("li").children("div.newsBody").clone());
  $("ul#recent_images a.thmb_containter:first").children("img").addClass("thmb_sel");
  $("ul#recent_images a.thmb_containter:first").parents(".newsImageSmall").siblings(".newsImage").children("a").removeAttr("rel");

  if($("ul#recent_images li").size() == 1) $("ul#recent_images").hide();

/* 
  $("#sel_item a").click(function(){
    prPW($(this).attr("href"),100);
    return false;
  });
*/
  $("td.center a[href^='http://']:not([class])").each(function(){
    $(this).attr("target","_blank");
    $(this).addClass("external");
    $(this).append("&nbsp;<img src=/pr/awg/images/v3/external.png width=9 height=9 />");
  });

// END OF DOCUMENT.READY
/////////////////////////////////////////
});
