/**
 * AJAX more page button plugin for JQUERY
 *
 * @copyright   Copyright (c) 2011 Vaclav Prokes
 * @version     $Id$
 */

(function($) {
    $.fn.morePage = function(settings) {
	var config = {
	    'class' : 'cutheight',
	    'show_label': 'show',
	    'hide_label' : 'hide'
	};

	if (settings) $.extend(config, settings);

	this.each(function() {
		
	});


	return this;
    };

})(jQuery);





