$(function(){

	$("div.movieslist_cp input[type=submit][name=batchReset]").bind('click', function(){

		if ( window.confirm("очистить выборку видеопродукции?") ) {

			var msgbox = $(this).parents().slice(0, 1).find("div.messagebox");
			msgbox.html('<span>подождите..</span>').show();
			$("form[name=batchCtl] input[type=checkbox][name^=movieIds]").attr('checked', false);
			$.post('/videocatalogueAjax.php', { action:'batchreset' }, function(){
				msgbox.html('<span>выборка очищена</span>').fadeOut('slow');
			});
		}
		return false;
		//$(this).parents().find("div.movieslist_cp").

	})

});

