var Footer={
	activeScroll:false,
	useResize:true,
	init:function(){		
		var footer=$('#footer');
	
		$(footer).append('<span class="background-menu" style="z-index:1;opacity:.1;position:absolute;left:0;top:0;height:60;width:0;background-color:#000;"><span>');
		$(footer).css({top:$(document).height()})
		$('#content_footer > a').hover(function(e){
			$(this).stop().animate({color:'#cd4133'},1000,"easeOutQuad")
			$('footer .background-menu').stop().show().animate({top:0,left:$(this).offset().left-4,height:82,width:$(this).width()+10},1000,"easeInOutExpo")
		},function(e){
			$(this).stop().animate({color:'#ffffff'},500,"easeInExpo")
		});
	
		$(footer).mouseleave(function(e){
			$('#footer .background-menu').stop().animate({left:-100},1000,"easeInOutExpo",function(){
				$('#footer .background-menu').stop().hide();
			});	
		});
		
		$('#onde').qtip({
		   content: 'Em Breve',
		   show: 'mouseover',
		   hide: 'mouseout',
		   position: {
		      corner: {
		         target: 'topCenter',
		         tooltip: 'bottomLeft'
		      },
				style: { 
			      name: 'blue' // Inherit from preset style
			   }
		   }
		    
		})
			
		$(window).bind('resize',Footer.resize);
		Footer.resize();
	},resize:function(e,top){
		
		var view= {height:$(window).height(),width:$(window).width()}
		var useResize=true;
		
		switch( SECTION){
			case 'colecao-fotos':
				if(view.height<940 ){
					Footer.activeScroll=true;
					$('body,html').css({overflowY:'auto'})
				}else{
					Footer.activeScroll=false;
					$('body,html').css({overflowY:'hidden'})
				}
			break;
			
			case 'lookbook':
				if(view.height<900  ){
					Footer.activeScroll=true;
					$('body,html').css({overflowY:'auto'})
				}else{
					Footer.activeScroll=false;
					$('body,html').css({overflowY:'hidden'})
				}
			break;			
			
			case 'amarca-historia':
				if(view.height<800 ){
					Footer.activeScroll=true;
					$('body,html').css({overflowY:'auto'})
				}else{
					Footer.activeScroll=false;
					$('body,html').css({overflowY:'hidden'})
				}
			break;
			
			case 'amarca-quemsomos':
					if(view.height<700 ){
						Footer.activeScroll=true;
						$('body,html').css({overflowY:'auto'})
					}else{
						Footer.activeScroll=false;
						$('body,html').css({overflowY:'hidden'})
					}
			break;
			
			case 'dicas':
					if(view.height<650 ){
						Footer.activeScroll=true;
						$('body,html').css({overflowY:'auto'})
					}else{
						Footer.activeScroll=false;
						$('body,html').css({overflowY:'hidden'})
					}
			break;			
			
			case 'fale-conosco':
					if(view.height<690 ){
						Footer.activeScroll=true;
						$('body,html').css({overflowY:'auto'})
					}else{
						Footer.activeScroll=false;
						$('body,html').css({overflowY:'hidden'})
					}
			break;
			
			case 'onde-comprar':
			//Footer.useResize=false;
			break;
		}
		
		
			if(Footer.activeScroll){			
				$('#footer').hide();
				var newPosition=$(document).height()-$('#footer').height();
				$('#footer').stop().show().css({top:newPosition+90})
			
			}else{
		
				$('#footer').stop().css({top:$(window).height() - $('#footer').height()})
			}
		
		
	}
}
