$(function() {

    $("a.polaroid").each(function() {
        $(this)
            
            .hover(function() {
                $(this).css({
                    "-webkit-transform": 'scale(1.05)',
                    "-moz-transform": 'scale(1.05)'
                })
            }, function() {
                $(this).css({
                    "-webkit-transform": 'scale(1)',
                    "-moz-transform": 'scale(1)'
                })
            });
    });
    

    $('a[rel=lightbox]').fancyZoom();
	
});
