$(document).ready(function(){
    $('a.popup').fancybox();
    
    $('.hoverable').mouseenter(function(){
        $(this).addClass('hover');
    }).mouseleave(function(){
        $(this).removeClass('hover');
    });
    
    $('.opacityHover').mouseenter(function(){
        $(this).css({'opacity': 0.85});
    }).mouseleave(function(){
        $(this).css({'opacity': 1});
    }).css({'opacity': 1});
});
