/*
    Coded by Steven Bower (cc) 2009
    BPWebDesign http://bpwebdesign.com/
    TurnWheel Designs http://turnwheel.com/
*/

$(function() {
    // Handle external links
    $('a[rel="external"]').click(function() {
        window.open($(this).attr('href'),'e_'+Math.round(Math.random()*11));
        return false;
    });
});