$(document).ready(function(){

//	$('.hero-container-wrapper').css( 'opacity',0);
	$('.hero-container-wrapper').css( { 'opacity': '0', 'top': '-100%' } );
//	$(this).css('-webkit-transform','scale('+now+')' );
	$('.hero-container-wrapper').animate( { top: 0, opacity: 1 }, { duration: 1000,  specialEasing: {
      width: 'linear' }, step: function(now, fx) {   } } );
      
      var span = $(this).find('span');
      var img = $(this).find('img');
    
    $('ul.hero-bubbles>li').hover(function(){
				$(this).addClass('flip');
			},function(){
				$(this).removeClass('flip');
			});
			  
  //  $('ul.hero-bubbles>li').mouseover(function() {
    
//    	$(this).addClass('flip'); } );
    
//    $('ul.hero-bubbles>li').addClass('inactive');
    
    /*
     img.animate( { top: -35 }, { duration: 1000,  specialEasing: { width: 'linear' }, step: function(now, fx) {     	     
     span.css('top', now+45 ); } } );
	}).mouseout(function() { 
	
	$('ul.hero-bubbles>li').removeClass('inactive'); 
		span.removeAttr ( 'css' );	
		img.removeAttr ( 'css' );
	} );
	*/
});
