//efeito banner
$.fn.cycle.defaults.speed   = 1500;
$.fn.cycle.defaults.timeout = 7000;	
$(function() {
    $('#slide').cycle({
       fx:     'toss',
       easing: 'easeOutExpo',
       animOut: { top: 100, left: 300 }
    });
	
});

//png transparent
//$(function(){$(document).pngFix();});

$(document).ready(function() {
  $('input[type=submit]').hover(function(){
    $(this).css("background-color","#E0661C");
  }, function(){
    $(this).css("background-color","#666");
  });
  
  
  $('input[type=text], textarea').hover(function(){
	$(this).css({border: "#E0661C 1px solid"});
  }, function(){
	$(this).css({border: "#CCC 1px solid"});
    
  });
  
  
   //links FancyBox
	 $("a.modal-popup").fancybox({
	 'hideOnContentClick': true,
	 'zoomSpeedIn': 600,
	 'zoomSpeedOut': 500,
	 'overlayShow': false
	 });
	 
	 //$("a.modal-popup").fancybox(); 

});


