function menu(slug)
{
  var url = blog_url + '/category/' + slug;
  if (slug == '' || slug == 'null') url = blog_url;
  location.href = url;
  return false;
}

$(document).ready(function()
{
  // body height fix
  if ($('body').height() < $(window).height())
  {
    $('body').height($(window).height() + 'px');
  }
  
  // fake crop gallery images
  $('.gallery_images a img').imagecrop(91, 91, 'http://www.watisin.nl/wp-content/themes/watisin/img/transparent.gif');
  
  // show first row (5 images) of each gallery's images on homepage    
  $('.all_content .gallery_images').each(function()
  {
    var i = 0;
    $('a', $(this)).each(function ()
    {
      (i < 5) ? $(this).show() : $(this).hide();
      i++;
    });
  });
  
  // remove last post line  
  // $('#content .item:last').css({'border': 'none'});

  $('.mailpress_settings input[type=checkbox]').before('<br/>');
  
  // fancybox
  $('.fancybox').fancybox();
  
});
