jQuery(document).ready(function(){
        $(function(){
            $("a[@rel='external']").each(function(){
                this.target = "_blank";
            });

            /*  -------------------------------------------------------------------
                Toggle Content ---------------------------------------------------- */
            $("input:image")
                .bind('mouseover focus', function(){this.src = this.src.replace(/(?:_o)?\.([a-z]*)$/i,"_o.$1"); })
                .bind('mouseout blur',   function(){this.src = this.src.replace(/_o\./i,".");});
        });

;
 })
