 $('.articleblocks').masonry({ singleMode: true });
 
$(window).load(function(){
 
  $('#showcase').cycle({ 
      fx:     'fade', 
      speed:  'fast', 

      next:   '#next2', 
      prev:   '#prev2' 
  });
  
  $(".articleblock h3").css({ opacity: 0.01 });
  $(".articleblock p").css({ opacity: 0.01 });
  
  $(".articleblock").hover(
    function () {
      $(this).addClass("hovered");
      $("h3", this).css({ opacity: 1 });
      $("p", this).css({ opacity: 1 });
    },
    function () {
      $(this).removeClass("hovered");
      $("h3", this).css({ opacity: 0.01 });
      $("p", this).css({ opacity: 0.01 });
    }
  );
  
  $('#contentimages ul').cycle({ 
        fx:     'fade', 
        speed:  'fast', 
        pager:  '#imagenav'
    });
  
});
