/**
 * @author Bruno Lima
 */
jQuery(document).ready(function(){	
	jQuery.noConflict();
 	jQuery(".galeriaParceiros").cycle({fx: 'fade',timeout: 3000, height: '80px'});
	jQuery("input[type='text'], input[type='password'], textarea, select").addClass("styelForm");
	jQuery("input[type='text'], input[type='password'], textarea, select").focus(function(){
		jQuery(this).addClass("styleFormFocus");	
	}).click(function(){
		jQuery(this).addClass("styleFormFocus");	
	});	
	jQuery("input[type='text'], input[type='password'], textarea, select").blur(function(){
		jQuery(this).removeClass("styleFormFocus");	
	});
	
	//Função para altera o tamanho da fonte
	var fonte = 11;
    jQuery("#aumenta_fonte").click(function(){
		if (fonte<25){
			fonte = fonte+1;
			jQuery("#col1").css({"font-size" : fonte+"px"});
		}
    });
    jQuery("#reduz_fonte").click(function(){
		if (fonte>9){
			fonte = fonte-1;
			jQuery("#col1").css({"font-size" : fonte+"px"});
		}
    });	
});