/*ESTE ARQUIVO JAVASCRIPT FOI DESENVOLVIDO POR PUBLIONLINE BRASIL
http://www.publionline.com.br*/

$(document).ready(function(){
		
		(function($){ // Wrapper to make sure that the $ is used by jQuery and wasn't taken over by another library
			
			//////////////////////////// SCRIPTS DO MENU /////////////////////////////
			$('ul#MENU li.submenu, ul#MENU li.franquias').hover(function(){
				$(this).find('ul.firstSub')
				.stop(true, true)
				.fadeIn('fast');
			}, function(){
				$(this).find('ul.firstSub')
				.stop(true, true)				
				.fadeOut('fast');
				});
			
			$('ul#MENU li.submenu ul li.submenu2').hover(function(){
				$(this).find('ul.secondSub')
				.stop(true, true)
				.fadeIn('fast');
			}, function(){
				$(this).find('ul.secondSub')
				.stop(true, true)
				.fadeOut('fast');
				});	
			
			$('#menu li.submenu').hover(function(){
			$(this).children('div').stop(true, true).fadeIn(200);									 
			}, function(){
			$(this).children('div').stop(true, true).fadeOut(200);
			});
			
			////////////////////////////////////////////////////////////////////////
			
		
			////ALTERANDO A LARGURA DA FAIXA VERMELHA QUE FICA EM CIMA DO BANNER E DA DIV 'PARTICIPE' DE ACORDO COM A RESOLUÇÃO////
			if($(window).width() >= 1200 && $(window).width() <= 1280){
				$('#faixa').css('width', '200px');	
			}
			else if($(window).width() <= 1024){
				$('#faixa').css('width', '60px');	
			}
			//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
			
			//////////////
			$('.box-tooltip').hover(function(){
				$('.tooltip')
				.stop(true, true)
				.fadeIn('fast');								   
			}, function(){
				$('.tooltip')
				.stop(true, true)
				.fadeOut('fast');	
			});
			
			$('.box-tooltip a').click(function(e){
				e.preventDefault();								   
			});
			/////////////	
	
	
		})(jQuery);
 });


