jQuery(document).ready(function(){ 
	$('a[rel=external]').click( function() {
        window.open( $(this).attr('href') );
        return false;
    });
	
	$('div#wrapper div.maincopy p').each(function(i, item) {
		setTimeout(function() {
			$(item).fadeOut();
		}, 100 * i);
	});
});
