$(document).ready(function() {
    $('a[rel="external"]').click( function() {
        window.open( $(this).attr('href') );
        return false;
    });
    
	$('a[rel="popup"]').fancybox({
	    'width'             : '75%',
	    'height'            : '75%',
	    'autoScale'         : false,
	    'transitionIn'      : 'none',
	    'transitionOut'     : 'none',
	    'type'              : 'iframe',
	    'showNavArrows'		: false
	});    
});

$('a[href="#top"]').click(function() {
  $('html,body').animate({ scrollTop: 0 }, "slow");
  return false;
});
