(function($){
	var mainBase;
	var userShown;
	$.fevercontent = function(el,options){
	
	var base = this;
		
    // Access to jQuery and DOM versions of element
    base.$el = $(el);
    base.el = el;
		
	base.$el.data('fevercontent', base);
	
	base.init = function(){		
			  base.options = $.extend({}, $.fevercontent.defaultOptions, options);
			  
			  
			  base.$el.find('.page-li.'+base.options.name).each(function(){
			  		$(this).onClick(function(){
			  				if($(this).hassClass('visible')){
			  						return;
			  				}else{
			  					$("#"+base.options.name+page+"_"+$(this).attr('id')).fadeIn();
			  				}
			  		
			  		
			  		});

			  });
			  
			  
	}
	
	base.init();
	
	}
	$.fevercontent.defaultOptions = {
        
	};
	var methods = {shit:'shit'};
	$.fn.fevercontent = function(method){
	
		if ( methods[method] ) {
     		 return methods[ method ].apply( this, Array.prototype.slice.call( arguments, 1 ));
   		 } else if ( typeof method === 'object' || ! method ) {
      		 return this.each(function(){
           		 (new $.feverSlide(this, method));
        	 });
  	    } 
       
    };
    
    })(jQuery);
			  
