$(document).ready(function(){
		
		(function($){ // Wrapper to make sure that the $ is used by jQuery and wasn't taken over by another library
			
	    //////////////////////////// MENU /////////////////////////////
	    /* $('li.submenu').menuRollover(); */					
	    ///////////////////////////////////////////////////////////////
			
		$('#conteudo_rodape ul:first').css('padding-left', '10px');		
		$('#cycle_depoimentos').cycle({fx: 'fade', speed: 1000, timeout: 7000});		
		$('.lista_padrao li, .lista_clientes_first li, .lista_clientes li, .lista_aulas li, .titulo_faixa').addClass('size');
		
		$('.lista_aulas_lateral li:even').addClass('zebra');
			
		///////////////////////////// FONT SIZE /////////////////////////////////
		var fonte = 13;
		$('.a_grande').click(function(){	
		
		if (fonte <= 15){			
		fonte++;
		}
		
		$('.size').css('fontSize',  fonte);
		
		}); 
		
		$('.a_pequeno').click(function(){	
		
		if (fonte > 13){			
		fonte--;
		}
		
		$('.size').css('fontSize',  fonte);
		
		});
		///////////////////////////////////////////////////////////////////////
		
		
		$('.resposta').hide();
		$('.resposta:first').show();
		
		$('.pergunta').click(function(){
			$(this).next('.resposta').slideDown('fast').siblings('.resposta').slideUp('fast');							  
		});
		
		
		///////////////////////////// PNG FIX /////////////////////////////////		  
		$(document).pngFix();		  
		///////////////////////////////////////////////////////////////////////
			
			
		})(jQuery);
 });
