
$(function() {
  var height = $(window).height();
  var bodyHeight = $('#body').height();
  if (height > bodyHeight) {
    $('#body').css('min-height', height + 'px');
    $('#center').css('min-height', height - 246 + 'px');
  }
});

$(function() {

  $('a[rel*="lightbox"]').lightBox();
  $('div.lbg a[rel*="lightbox"]').hover(
    function() {
      var c = $(this).children();
      var o = c.offset();
      c.css('z-index', 100);
      c.animate({
        'top': '-=7px',
        'left': '-=10px',
        'width': '+=20px'
      }, 200);
      c.addClass("selected");
    },
    function() {
      var c = $(this).children();
      c.removeClass("selected");
      c.css('z-index', 1);
      c.animate({
        'top': '+=7px',
        'left': '+=10px',
        'width': '-=20px'
      }, 200);
    }
  );
});
