// JavaScript Document

$(document).ready(function() {
	
    $('#acionarcontato').append('<div class="hover"></div>').each(function () {
        var $div = $('> div.hover', this).css('opacity', 0);
        $(this).hover(function () {
            $div.stop().fadeTo(350, 1);
        }, function () {
            $div.stop().fadeTo(500, 0);
        });
    });
	

});


// Eletro

$(document).ready(function() {
	$(".eletro").everyTime(10, function(){						 
		  
         $('.eletro').animate({width: 145},600);
		 $('.eletro').animate({opacity: 0.0},500);
		 $('.eletro').animate({width: 0},0);
		 $('.eletro').animate({opacity: 1.0},0);
		 $('.eletro').animate({opacity: 1.0},3000);
    });

});


