////////////////// EXTERNAL SITES / OPEN NEW WINDOW //////////////////
$(document).ready(function(){
$('img.fade').hover(
function() { $(this).fadeTo('fast',0.8).fadeTo('500',1);},
function() { $(this).fadeTo('fast',1);}
);
});



////////////////// EXTERNAL SITES / OPEN NEW WINDOW //////////////////
$(document).ready( function() {
    $('A[rel="external"]').click( function() {
        window.open( $(this).attr('href') );
        return false;
    }); 
});

////////////////// FANCY BOX //////////////////
$(document).ready(function() { 
	 $("a.photo").fancybox({ 'zoomSpeedIn': 300, 'zoomSpeedOut': 300, 'overlayShow': false }); 
}); 
