$(document).ready(function(){
	$('div.spoiler').spoiler();
	$('#changeDesign').click(function(){
			var s=$('#commonstyle');
			var newstyle='common2.css'
			if(s.attr('href')=='common2.css')
				newstyle='common.css';

			s.attr('href',newstyle);
			$.post("style.php", { design: newstyle });
			return false;
		});

});
