window.index_index = Backbone.View.extend({
	el: $("body"),
	vendors: ["easing"],
	initialize: function(){ var _this = this; munstro.load_vendors(this.vendors, function(){ _this.__construct(); }); },		
	events: {
	},
	__construct: function(){
		$(".smart").fadeIn(700, function(){
			$(".simple").fadeIn(700, function(){
				$(".superior").fadeIn(700, function(){
					$(".cloud").animate(
						{top: -600},
						{easing: "easeInQuad",
						duration: 1500
						}
					);
					$(".cloud_shadow").fadeOut(2000);
					$(".see_demoshadow").delay(1500).fadeIn(2000);
					$(".see_demo").delay(1000).animate(
						{top: 10},
						{easing: "easeOutQuad",
						duration: 1500,
						complete: function(){
							$(".for_physicians").fadeIn(1000);
							$(".for_dme").delay(500).fadeIn(1000);
							$(".for_billing").delay(1000).fadeIn(1000);
						}
						}
					);
				});
			});
		});
	}
});
window._index_index = new window.index_index;
