jQuery(document).ready(function() {

	jQuery('#switch').click(function() {
		if(jQuery(".stylesheet").attr("href") == "fileadmin/templates/stylesheets/white.css") {
			jQuery(".stylesheet").attr("href","fileadmin/templates/stylesheets/black.css");
			//$.cookie("loaded_stylesheet", null);
			jQuery.cookie("loaded_stylesheet","fileadmin/templates/stylesheets/black.css", {expires: 365, path: '/'});


			return false;
		} else {
			jQuery(".stylesheet").attr("href","fileadmin/templates/stylesheets/white.css");
			//$.cookie("loaded_stylesheet", null);
			jQuery.cookie("loaded_stylesheet","fileadmin/templates/stylesheets/white.css", {expires: 365, path: '/'});
			return false;
		}
	});

});
