﻿
$(document).ready(function(){
$('.Themes li').click(function(){
	         $.ajax({
                type: "POST",
                url: "/WebService.asmx/ThemesSet",
                data: "{'themes':'"+$(this).attr('id')+"'}",
                contentType: "application/json; charset=utf-8",
                dataType: "json",
                success: function(msg) {    
                         location.reload();
                    }
            });
	          
	    });		
});
