$(document).ready(function() {


	Cufon.replace('h2, h3, ul#subnav')
	
	
	$('#gallery, #biography #gallery_insert').cycle({ 
    	fx:     'fade', 
    	speed:  'fast', 
    	timeout: 0, 
    	next:   '#gallery_next', 
    	prev:   '#gallery_prev' 
	});
	
	
	/* This launches all rel="external" links in a new tab/window */
	$('a[rel="external"]').click(function(){
        window.open( $(this).attr('href') );
        return false;
    });
    
    
    // This launches all rel="pop_player" links in a new window
    $('a[rel="pop_player"]').click(function(){
       	window.open(this.href,'mywindow','height=345,width=300,scrollTo,scrollbars=0,resizable=0,location=0','false');
		return false;
   	 });
	

});