if (typeof jQuery != 'undefined')
{
  $(document).ready(function() {
    $('.project_item .info').each( function() {
      $(this).attr('height', $(this).height() + 'px');
    });
  
    $('.project_item').hover(
      function() {
        $(this).find('.info').stop(true, true).slideDown('fast');
      },
      function() {
        $(this).find('.info').stop(true, true).slideUp('fast');
      }
    );
    
    $('a[rel~=external], .external').each(function() {
      $(this).attr('target', '_blank');
    });
  });
}
