(function($){
	$.fn.simpleButton = function(){
		this.mousedown(function(){
			$(this).addClass('mousedown');
		}).mouseup(function(){
			$(this).removeClass('mousedown');
		}).mouseleave(function(){
			$(this).removeClass('mousedown');
		});
	};
})(jQuery);


$(function(){
	$('.order-now-text').simpleButton()
});
