// External links
$('a').click(function(){
    if($(this).attr('rel') == 'external'){
        window.open(this.href);
        return false;
    }else{
        return true;
    }
});
$(document).ready(function(){         
    $('.view-slideshow .view-content ul').innerfade({ speed: 'slow', timeout: 4000, type: 'sequence', containerheight: '419px'});     
}); 


