function sort_labels()
{
  $("#search input").labelify({
    text: "label"
  });
}

//////////////////////////////////////////////////////////////////////////////////////////////////////

function corners()
{
  $('.curved').corner();
  
  $('.curved_top').corner({
    tl: { radius: 8 },
    tr: { radius: 8 },
    bl: false,
    br: false
  });
}

//////////////////////////////////////////////////////////////////////////////////////////////////////

function slideshow()
{
  $('#slide_wrap').cycle({
    fx: 'fade',
    speed: 2500,
    timeout: 7500,
    next:   '#next_slide', 
    prev:   '#prev_slide'
  });
}

//////////////////////////////////////////////////////////////////////////////////////////////////////

function equalHeight(group)
{
  var tallest = 0;
  group.each(function() {
   var thisHeight = $(this).height();
   if(thisHeight > tallest) {
     tallest = thisHeight;
   }
  });
  group.height(tallest);
}

//////////////////////////////////////////////////////////////////////////////////////////////////////

function lightbox(){
  $('a.lightbox').lightBox();
}

//////////////////////////////////////////////////////////////////////////////////////////////////////

$(document).ready(function() {
  sort_labels();
  corners();
  slideshow();
  equalHeight($("ul#gallery li"));
  equalHeight($("#content > .equal"));
  lightbox();
});
