﻿$(document).ready(function() {

    // Add email icons to email links
    $("a[href^='mailto:']").addClass("email");

    // Add icon to links to golfbox.no
    $("a[href^='http://www.golfbox.no']").addClass("golfbox");

    // Add pdf icons to pdf links
    $("a[href$='.pdf']").addClass("pdf");

    // Add pdf icons to htmllinks
    $("a[href$='.html']").addClass("html");

    // Add txt icons to document links (doc, docx)
    $("a[href$='.doc'], a[href$='.docx']").addClass("docx");

    // Add txt icons to document links (xls, xlsx)
    $("a[href$='.xls'], a[href$='.xlsx']").addClass("xlsx");

    // Add zip icons to Zip file links (zip, rar)
    $("a[href$='.zip'], a[href$='.rar']").addClass("zip");

    // We don't want this added to items in submenu
    $('#button').find('a').removeClass("html");
    $('#button').find('a').removeClass("docx");
    $('#button').find('a').removeClass("xlsx");

});