﻿$(function(){
            
    if(readCookie("tcsbackground") != null){
        $("#siteBody").removeClass();
        $("#siteBody").addClass(readCookie("tcsbackground"));
    }

    $("div#background-colour-selector").removeClass("hide");
            
    $("div#background-colour-selector").mouseenter(function(){
        $("div#background-colour-selector").animate({"top":"+=39px"}, "slow");
    });
    $("div#background-colour-selector").mouseleave(function(){
        $("div#background-colour-selector").animate({"top":"-40px"}, "slow");
    });

    $("a.beige").click(function(){
        $("#siteBody").removeClass();
        $("#siteBody").addClass("background-style-beige");
        createCookie("tcsbackground","background-style-beige",60)
    });
    $("a.blue").click(function(){
        $("#siteBody").removeClass();
        $("#siteBody").addClass("background-style-blue");
        createCookie("tcsbackground","background-style-blue",60)
    });
    $("a.stars").click(function(){
        $("#siteBody").removeClass();
        $("#siteBody").addClass("background-style-stars");
        createCookie("tcsbackground","background-style-stars",60)
    });

});