var $ = jQuery.noConflict();

$(function(){
   $('.gallery').roundabout();

   $("#promo input[type='checkbox']").click(function () {
      $("#promo span").fadeOut("slow", function () {
         $("#promo input[type='text']").fadeIn("slow");
      });
   });
   $("#reser input[type='checkbox']").click(function () {
      $("#reser span").fadeOut("slow", function () {
         $("#reser input[type='text']").fadeIn("slow");
      });
   });

   // Accordion
   $("#accordion").accordion({ header: "h3" });

   //hover states on the static widgets
   $('#dialog_link, ul#icons li').hover(
      function() { $(this).addClass('ui-state-hover'); },
      function() { $(this).removeClass('ui-state-hover'); }
   );


});
