(function( $ ){
 	$.fn.ButtonDesign = function(options) {
		var settings = {
		
		};


		if ( options ) { 
			$.extend( settings, options );
		};
		

		
		return this.each(function() {
			if (settings.Btype == "standart") {
				styleStandartButton(this);
			};
			if (settings.Btype == "bigone") {
				styleBigOneButton(this);
			};
		});
		
		function  styleStandartButton(thisObject) {
			var buttonText = $(thisObject).text();
			$(thisObject).addClass("button submit-button");
			$(thisObject).html("<span><em>"+buttonText+"</em></span>");
		};
		function  styleBigOneButton(thisObject) {
			var buttonText = $(thisObject).text();
			$(thisObject).addClass("button Large");
			$(thisObject).html("<span><em>"+buttonText+"</em></span>");
		}
		
		
	};	
})( jQuery );
