(function($){

$(function(){
    
    $("#markets-navigation").each(function(){
        var c = $(this);
        if(c.children().length == 1){
            if(c.find("#pnPrev").length > 0){
                $('<a class="inactive" title="You are on the first project" id="pnNext">Previous Project</a>').appendTo(c);
            }
            else{
                $('<a class="inactive" title="You are on the last project" id="pnPrev">Previous Project</a>').prependTo(c);
            }
        }
    });
    
    $("#main a").each(function(){
        var hh = $(this).attr("href");
    
        if(hh && hh !== "" && hh.indexOf("http://") != -1 && ( hh.indexOf("pe.sprokets")==-1 && hh.indexOf("precision")==-1 )){$(this).addClass("external");}
        
    });
    
    $("a.fancybox").fancybox({
        titlePosition: "over",
        width: 720
    });
    
    
});

})(jQuery);
