/**
 * dRS zebra
 * Dieses JQuery Plug-in steht fŸr jedes dRS.5 System individuell zur VerfŸgung
 * es wird bei einem Update nicht Ÿberschrieben. Somit kšnnen spezielle Anpassungen fŸr
 * jedes System erstellt werden.
 * 
 * @author derRabe
 * @version 5.1.0
 */

(function( $ ){

	var methods = {
			/**
			 * Init
			 */
			init : function( options ) {

				/**
				 * Eigenschaften
				 */
				var defaults = {
					nix	: ''
				};
				var options = $.extend(defaults, options);
				
				return this.each(function(){
					console.log('dRSFront==================');
					console.log(options);
					
					
					
					
				});
			},
			/**
			 * Destroy
			 */
			destroy : function( ) {

				return this.each(function(){
					
				});
			}
	};

	$.fn.dRSFront = function( method ) {

		if ( methods[method] ) {
			return methods[method].apply( this, Array.prototype.slice.call( arguments, 1 ));
		} else if ( typeof method === 'object' || ! method ) {
			return methods.init.apply( this, arguments );
		} else {
			$.error( 'Method ' +  method + ' does not exist on dRSFront' );
		}    

	};

})( jQuery );
