﻿
function CheckDelete() {
    var answer = confirm("Do you really want to delete this item?");
    if (answer) {
        return true;
    }
    else {
        return false;
    }
}


$(document).ready(function() {
//alert(window.location);
if (window.location.href.indexOf("default") > 0)
    $("#misterretail").addClass("current");
    
    if (window.location.href.indexOf("insulated-pipe") > 0)
        $("#insulatedpipe").addClass("current");

    if (window.location.href.indexOf("outdoor-stoves") > 0)
        $("#outdoorstoves").addClass("current");

    if (window.location.href.indexOf("air-handlers") > 0)
        $("#airhandlers").addClass("current");

    if (window.location.href.indexOf("unit-heaters") > 0)
        $("#unitheaters").addClass("current");
        
});

