/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
cm={
  loop: function(){
			var height = $(window).height()-$('#intro').height();
			height = height/2;
  			$('#intro').css({ "margin-top": height});
			$('#loop').css({ "margin-top": height});

  		    $('#intro').bind('ended', function(){
				$('#loop').get(0).play();
            	$(".wrapper").hide();
            	$(this).hide();  
				
			$('#loop').bind('ended', function(){
            		$('#loop').get(0).play(function(){
            	});
            	
    			});        	
            	
    		});
			$(window).resize(function() {
			    var height_ = $(window).height()-$('#intro').height();
				height_ = height_/2;
  				$('#intro').css({ "margin-top": height_});
				$('#loop').css({ "margin-top": height_});
			});
    		
      }
  
}
