//::::::::::::::::::::::::::: Fade conteudo ::::::::::::::::::::::::::::::::
			$(document).ready(function(){
				$(".conteudofade").hover(function() {
                $(this).stop().animate({ backgroundColor: "#d1efff"}, 800);
                },function() {
                $(this).stop().animate({ backgroundColor: "#ffffff" }, 800);
                });
	
		 }); 
//:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

//::::::::::::::::::::::::::: Fade Menu :::::::::::::::::::::::::::::::::::
			$(document).ready(function(){
				$(".menufade").hover(function() {
                $(this).stop().animate({ backgroundColor: "#4f4f4f"}, 800);
                },function() {
                $(this).stop().animate({ backgroundColor: "#222323" }, 800);
                });
	
		 }); 
//:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

//::::::::::::::::::::::::::: Fade Subtitulos :::::::::::::::::::::::::::::::::::
			$(document).ready(function(){
				$(".conteudop").hover(function() {
                $(this).stop().animate({ backgroundColor: "#e6f5fd"}, 800);
                },function() {
                $(this).stop().animate({ backgroundColor: "#ffffff" }, 800);
                });
	
		 }); 
//:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

//::::::::::::::::::::::::::: Fade Linhas Acordion :::::::::::::::::::::::::::::::::::
			$(document).ready(function(){
				$(".linhasacord").hover(function() {
                $(this).stop().animate({ backgroundColor: "#e6f5fd"}, 800);
                },function() {
                $(this).stop().animate({ backgroundColor: "#F7F7F7" }, 800);
                });
	
		 }); 
//:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

//::::::::::::::::::::::::::: Fade Imagens Linhas :::::::::::::::::::::::::::::::::::
			$(document).ready(function(){
				$(".vendasfotos img").hover(function() {
                $(this).stop().animate({ opacity: "1" }, 800);
                },function() {
                $(this).stop().animate({ opacity: "0.6" }, 800);
                });
	
		 }); 
//:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
