$(document).ready(function() {
//Contato
	$('.solicite').toggle(function() {
		$('#header').animate({ height:'290px'});
		$('#cinza').animate({ height:'200px'});
		//$('html').animate({ padding: '200px 0 0'});
		$('html, body').animate({scrollTop:0});
		},function(){
		$('#header').animate({ height: '90px'});
		$('#cinza').animate({ height:'0px'});
		//$('html').animate({ padding: '0px 0 0'});
	});
	
//Destaque
    $('#wrap').cycle({
		fx: 'scrollHorz',
		timeout: 0,
		cleartypeNoBg: true,
		next: '#prox', 
		prev: '#ante'
	});

//Clientes
	$('.cliente').hover( function(){
		$(this).children('img').animate( {opacity:'toggle'});
	});

});

//Google Analytics
	var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-4157891-4']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();
