$(document).ready(function(){var colour=$.cookie('colour_cookie');$("#topsection").css({'background-color':colour});$("#contentmenu .current").css({'background-color':colour});$("#rightblue").css({'background-color':colour});$("#orange").mouseup(function(){$("#topsection").css({'background-color':'orange'});$("#contentmenu .current").css({'background-color':'orange'});$("#rightblue").css({'background-color':'orange'});$.cookie('colour_cookie','orange',{expires:60});});$("#blue").mouseup(function(){$("#topsection").css({'background-color':'#00288f'});$("#contentmenu .current").css({'background-color':'#00288f'});$("#rightblue").css({'background-color':'#00288f'});$.cookie('colour_cookie','#00288f',{expires:60});});$("#grey").mouseup(function(){$("#topsection").css({'background-color':'#778899'});$("#contentmenu .current").css({'background-color':'#778899'});$("#rightblue").css({'background-color':'#778899'});$.cookie('colour_cookie','#778899',{expires:60});});$("#emerald").mouseup(function(){$("#topsection").css({'background-color':'#3c7b24'});$("#contentmenu .current").css({'background-color':'#3c7b24'});$("#rightblue").css({'background-color':'#3c7b24'});$.cookie('colour_cookie','#3c7b24',{expires:60});});$("#purple").mouseup(function(){$("#topsection").css({'background-color':'#9f45ad'});$("#contentmenu .current").css({'background-color':'#9f45ad'});$("#rightblue").css({'background-color':'#9f45ad'});$.cookie('colour_cookie','#9f45ad',{expires:60});});$("#red").mouseup(function(){$("#topsection").css({'background-color':'#cf2b2b'});$("#contentmenu .current").css({'background-color':'#cf2b2b'});$("#rightblue").css({'background-color':'#cf2b2b'});$.cookie('colour_cookie','#cf2b2b',{expires:60});});$("#green").mouseup(function(){$("#topsection").css({'background-color':'#36c31a'});$("#contentmenu .current").css({'background-color':'#36c31a'});$("#rightblue").css({'background-color':'#36c31a'});$.cookie('colour_cookie','#36c31a',{expires:60});});})
