$(document).ready(function() {
  
  // Open Links in New Window
  $("a[rel=external]").click(function() {
    window.open( $(this).attr('href') );
    return false;
  });
  
  $('body.home div.hover').fadeTo(0,0);
  $('#beer-spread li').hover(function() {
      $(this).find('img').hoverFlow('mouseenter', { marginTop: "-40px" }, 'fast');
      $(this).find('div').hoverFlow('mouseenter', {marginTop: "-40px", opacity: "1.0"}, 500);
    }, function() {
      $(this).find('img').hoverFlow('mouseout', { marginTop: "0" }, 'fast');
      $(this).find('div').hoverFlow('mouseout', {marginTop: "0", opacity: "0"}, 500);
    }
  );
  
  // Homepage Emma Form
  
  $("body.home input[name='emma_member_email']").click(function() {
    $(this).css({backgroundPosition: "0 -49px"})
  });
  
  $("body.home input[name='emma_member_email']").blur(function() {
     if($(this).val()=="") {
  	    $(this).css({backgroundPosition: "0 0"});
  	  }
  });
  
  // About Lightboxes 
  $("body.about-yazoo .photos a").colorbox();
    
});
