//Style last item in tabs list
$(document).ready(function(){
$("body.home .box ul li:last").addClass("no-image");
//Open all links with rel="external" in new window
$('a[rel="external"]').click( function() {
        window.open( $(this).attr('href') );
        return false;
    });
 });

