﻿function trackClick(el) {
    $.ajax({
        type: "GET",
        url: "/inc/track.aspx?url=" + el.href
    });
    //alert(el.href);
    //alert(1);
}


function DoRollOver(name, over) {
    if (window.document.images) {
        var sExt;
        if (window.document.images[name].src.indexOf('.jpg') > 0) {
            sExt = ".jpg";
        } else {
            if (window.document.images[name].src.indexOf('.gif') > 0) {
                sExt = ".gif";
            } else {
                sExt = ".png";
            }
        }

        if (over)
            window.document.images[name].src = window.document.images[name].src.replace(sExt, '-hover'+sExt);
        else
            window.document.images[name].src = window.document.images[name].src.replace("-hover", "");
    }
}
