﻿$(document).ready(function() {
    // initialise the scollpanes on the page.
    $('div#scroll-bar-hook').jScrollPane();

    //set the copyright text with the current year
    var currentYear = new Date().getFullYear();
    var copyrightText = "© pamelaneil " + currentYear + ". All rights reserved.";
    $("#copyright-note").text(copyrightText);

    //stop copyright link navigation
    $("#copyright-note").click(function() {
        return false;
    });

    //logo hover color change
    $('a.logo img').hover(function() {
        $(this).attr("src", "../../Content/Images/logoOrange.jpg");
    }, function() {
        $(this).attr("src", "../../Content/Images/logo.png");
    });

    //preload the orange logo image
    $("<img>").attr("src", "../../Content/Images/logoOrange.jpg");
});