function setStyle(style){
	$.ajax({
		 type: "POST",
		 url: "ajax.php?action=setStyle",
		 data: "style="+style,
		 success: function(msg){ 
			if(msg){
				window.location.reload();
			}else{
				//alert(msg);
				 $('#error').show();
				 return false;
			}
		 } 
		}); 
}

