// Copyright 2010 htmldrive.net Inc.
/**
 * @projectHomepage http://www.htmldrive.net/go/to/link-external-icon
 * @projectDescription Show external link icon
 * @author htmldrive.net
 * More script and css style : htmldrive.net
 * @version 1.0
 * @license http://www.apache.org/licenses/LICENSE-2.0
 */
(function(a) {
    a.fn.link_external_icon = function(p) {
        var p = p || {};
        var h = window.location.host.toLowerCase();
        var icon_path = p && p.icon_path ? p.icon_path : "link_external.png";
        var n = a(this);
        n.find("a[href$='.pdf']").attr("target", "_blank");
    }
})($telerik.$);
