    $(document).ready(function () {

            window.name = $("#hwnd").val()

            $(".thumb").fancybox()

        	$("#search").autocomplete('search.php', {
        		width: 266,
        		multiple: false,
        		matchContains: true
        	})

            $.ajax({
              url: 'checked.php',
              cache: false,
              success: function (data, textStatus) {
              keys = data.split(',')
              for(var i in keys) $(".check"+keys[i]).addClass('checked')
              }
            })
    })

function wopen(w,h,path,id,resizable, scrolling){
 t = (screen.height-h-30)/2;
 l = (screen.width-w-30)/2;
 window.open(path, 'window'+id, "top="+t+",left="+l+",width="+w+",height="+h+",resizable="+resizable+",scrollbars="+scrolling);
}
        function inbask(id) {
          $(".check"+id).addClass('checked')
          $("#basketwrapper").load('/inbask.php?id='+id)
	    }