$(document).ready(function(){
	var basePath = $('link[title="changer"]').attr('href');
	basePath = basePath.match(/^.*\//); 
	if($.cookie("websitecolor") != null) {
		$('link[title="changer"]').attr('href', basePath + $.cookie("websitecolor") + '.css' );
	} else {
		var randomNumber = Math.floor(Math.random()*2);
		$.cookie("websitecolor", (randomNumber == 0)? "dark":"white", {expires : 1} ); 
		$('link[title="changer"]').attr('href', basePath + $.cookie("websitecolor") + '.css' );
	}
	$('a.styleswitch').click(function(){
		$('link[title="changer"]').attr('href', basePath + $(this).attr('rel') + '.css' );
		$.cookie("websitecolor", $(this).attr('rel'), {expires : 1} );
	});
});
