﻿/* script to switch css and images for contrast switch */
/* authored by Verdon Vaillancourt */
/* version 1.0 april 2011 */

if ($.cookie("ContrastCSS")) {
    $("link.ContrastCSS").attr("href", $.cookie("ContrastCSS"));
}
if ($.cookie("MastImg1")) {
    $("img.MastImg1").attr("src", $.cookie("MastImg1"));
}
if ($.cookie("MastImg2")) {
    $("img.MastImg2").attr("src", $.cookie("MastImg2"));
}
if ($.cookie("ContrastLink")) {
    $("a.ContrastLink").attr("rel", $.cookie("ContrastLink"));
}
if ($.cookie("ContrastLinkImg")) {
    $("img.ContrastLinkImg").attr("src", $.cookie("ContrastLinkImg"));
}
$(document).ready(function () {
    $("#na_StyleSwitch a.styleSwitch").click(function () {
        if ($(this).attr('rel') == 'HC') {
            css = '/Style%20Library/NipissingAthletics/css/ThemeHC_1.css';
//            mast1 = '/Style%20Library/NipissingAthletics/images/v1_wordmark_320x68_rev.gif';
//            mast2 = '/Style%20Library/NipissingAthletics/images/v1_wordmark_202x44_rev.gif';
            link = 'DC';
            img = '/Style%20Library/NipissingAthletics/images/acc_dc_1.gif';
        } else {
            css = '/Style%20Library/NipissingAthletics/css/ThemeDefault_1.css';
//            mast1 = '/Style%20Library/NipissingAthletics/images/v1_wordmark_320x68.gif';
//            mast2 = '/Style%20Library/NipissingAthletics/images/v1_wordmark_202x44.gif';
            link = 'HC';
            img = '/Style%20Library/NipissingAthletics/images/acc_hc_1.gif';
        }
        $("link.ContrastCSS").attr("href", css);
        $.cookie("ContrastCSS", css, { expires: 365, path: '/' });
/*
        $("img.MastImg1").attr("src", mast1);
        $.cookie("MastImg1", mast1, { expires: 365, path: '/' });
        $("img.MastImg2").attr("src", mast2);
        $.cookie("MastImg2", mast2, { expires: 365, path: '/' });
*/
        $("a.ContrastLink").attr("rel", link);
        $.cookie("ContrastLink", link, { expires: 365, path: '/' });
        $("img.ContrastLinkImg").attr("src", img);
        $.cookie("ContrastLinkImg", img, { expires: 365, path: '/' });
        return false;
    });
});


