Cufon.replace('.report p, #main .main-footer ul li a, #main .sidebar .social p a', { hover: true, fontFamily: 'swis-light' });
Cufon.replace('h2', { hover: true, fontFamily: 'swiss-cond' });

jQuery(document).ready(function($){ 
 	
 
            $('.blink').
                focus(function() {
                    if(this.title==this.value) {
                        this.value = '';
                    }
                }).
                blur(function(){
                    if(this.value=='') {
                        this.value = this.title;
                    }
                });
 
	
	$('a[rel~="external"]').click(function(){
		$(this).attr('target','_blank');
 	}); 
		
	$('a[class~="external"]').click(function(){
		$(this).attr('target','_blank');
 	}); 

	$("ul#main-nav").superfish({ 
	    animation: {height:'show'},   // slide-down effect without fade-in 
	    delay:     2000,               // 1.2 second delay on mouseout
	    speed: 'fast',
	    autoArrows: false,
		dropShadows: true 
	});

});
