(function($) {
	$.fn.submitting_box = function(){
		$("#continue").click(function(){
			var the_state = $("#entityState")[0].selectedIndex;
		 	var page_height = $(document).height();
			page_height = page_height + "px";
			$(".submitting-box-overlay").css( { "height" : page_height } );
			if(the_state !== 0){
				$(".submitting-box").addClass("submitting-box-active");
				$(".submitting-box-overlay").fadeIn( 50, function(){
					$(".submitting-box-active").fadeIn(500);
					$(this).css( { "opacity" : "0.60" } )
				});	
		   }
		});
	}
})(jQuery);






