﻿<!--//--><![CDATA[//><!--


// Wires up the PDF icons for linked PDFs...
wireUpPdfIconLinks = function() {

    $("#col_1 p:not(.pod_highlight) a, #col_2 p:not(.pod_highlight) a").each(function() {
    
        if ($(this).attr("href").length > 0) {
            if ($(this).attr("href").substring($(this).attr("href").length - 4, $(this).attr("href").length).toLowerCase() == ".pdf") {
                if (!$(this).hasClass("pdf")) {
                    $(this).addClass("pdf");
                }
            }
        }
    });
    
}




$(document).ready(function() {
    // PDF icons...
    if ($('#col_1').length > 0) { wireUpPdfIconLinks(); }
});

//--><!]]>