$(document).ready(function(){$("#selector :checkbox").attr("checked","true");$(".s-act").click(function(){$("#selector :checkbox").attr("checked","true");$(".ol-index").load("ajax/index.php?music=3&cinema=4&show=1")});$("#selector :checkbox").change(function(){var music=$("#music").attr("checked");if(music==true)music=3;else music=0;var cinema=$("#cinema").attr("checked");if(cinema==true)cinema=4;else cinema=0;var show=$("#show").attr("checked");if(show==true)show=1;else show=0;$(".ol-index").load("ajax/index.php?music="+
music+"&cinema="+cinema+"&show="+show+"")})});