$(function(){
	
		// cerrar validacion
		$(document).ready(function(){
			$('#mobileApp').animate({bottom:-350, height:130},{queue: true, duration: 300});	
			$('#mobileApp').animate({bottom:-445, height:34},{queue: true, duration: 4000});
			$('#groupBrand').animate({bottom:-350, height:130},{queue: true, duration: 300});	
			$('#groupBrand').animate({bottom:-445, height:34},{queue: true, duration: 4000});
		});
		
		// footer
		
		$('#mobileApp').hover(
			function(){
				$(this).animate({bottom:-342, height:138},{queue: false, duration: 500});
			},
			function(){
				$(this).animate({bottom:-445, height:34},{queue: false, duration: 500});
			}
		);
		
		$('#groupBrand').hover(
			function(){
				$(this).animate({bottom:-342, height:138},{queue: false, duration: 500});
			},
			function(){
				$(this).animate({bottom:-445, height:34},{queue: false, duration: 500});
			}
		);
		
});

