// Global
$(document).ready(function () {

    // Add class to body to identify "scripted" only styles
    $("body").addClass("scripted");

    // Block right click on images
    $('img').live("contextmenu", function (e) {
        return false;
    }).live("mousedown", function(e){
      e.preventDefault();
    });
  
    // News ticker anim
    $('#tkr ul').cycle({
        fx: 'fade',
        speed: 750,
        timeout: 4000,
        random: 1,
        pause: 1
    });
  
    //External Links
    $('a[rel = external]').attr('target', 'blank');
});
