 jQuery(document).ready( function() {		

	jQuery("#btn_search").livequery('click', 
		function(){
			jQuery('#loading-mask').toggle();
			jQuery.post(ajaxurl_search, {
				action: 'ajaxurl_search',
				//'cookie': encodeURIComponent(document.cookie),
				'word': jQuery("#search-input").val()				
			}, 
			function(response){
				response = response.substr(0, response.length - 1);
				response = response.split('[[SPLIT]]');
							
				jQuery(".indek_list").fadeOut(200, function(){
					jQuery('#loading-mask').toggle();
					jQuery(".archieve").html(response[1]);
				});
			});
			return false;
		}
	);

});
