$(document).ready(function(){

				// PosInicial do box de destaque
				$(".cover").stop().animate({top:'315px'},{duration:0}, 'linear');

				$("#slider").easySlider();

				// Mouseover e mouseout do box de destaque
				$('#containerrr').hover(function(){
					$(".cover").stop().animate({top:'215px'},{duration:160}, 'linear');
					$("#nextBtn a").stop().animate({ opacity: 1 }, 400 );
					$("#prevBtn a").stop().animate({ opacity: 1 }, 400 );
					$("#nextBtn").stop().animate({top:'235px'},{duration:160}, 'linear');
					$("#prevBtn").stop().animate({top:'215px'},{duration:160}, 'linear');
				}, function() {
					$(".cover").stop().animate({top:'315px'},{duration:160}, 'linear');
					$("#nextBtn").stop().animate({top:'315px'},{duration:160}, 'linear');
					$("#prevBtn").stop().animate({top:'315px'},{duration:160}, 'linear');
				});

				// Mouseover e mouseout dos botoes
				$('#nextBtn a').hover(function(){
					$(this).css({ "background":"url('http://www.ricolins.com/wp-content/themes/rico/images/right2.png')" });
				}, function() {
					$(this).css({ "background":"url('http://www.ricolins.com/wp-content/themes/rico/images/right.png')" });
				});

				$('#prevBtn a').hover(function(){
					$(this).css({ "background":"url('http://www.ricolins.com/wp-content/themes/rico/images/left2.png')" });
				}, function() {
					$(this).css({ "background":"url('http://www.ricolins.com/wp-content/themes/rico/images/left.png')" });
				});
				
				$("#1").mouseover(function () {
					 $(this).css("color","#000");
					 $("#mouseover").stop().animate({ opacity: 1, paddingLeft: "8px" }, 400 );
				});

				 $("#1").mouseout(function () {
					 $(this).css("color","#CCC");
					 $("#mouseover").stop().animate({ opacity: 0, paddingLeft: "0px" }, 400 );
				});

				 $("#2").mouseover(function () {
					 $(this).css("color","#000");
					 $("#mouseover2").stop().animate({ opacity: 1, paddingLeft: "8px" }, 400 );
				});

				 $("#2").mouseout(function () {
					 $(this).css("color","#CCC");
					 $("#mouseover2").stop().animate({ opacity: 0, paddingLeft: "0px" }, 400 );
				});

				 $("#3").mouseover(function () {
					 $(this).css("color","#000");
					 $("#mouseover3").stop().animate({ opacity: 1, paddingLeft: "8px" }, 400 );
				});

				 $("#3").mouseout(function () {
					 $(this).css("color","#CCC");
					 $("#mouseover3").stop().animate({ opacity: 0, paddingLeft: "0px" }, 400 );
				});

				 $("#4").mouseover(function () {
					 $(this).css("color","#000");
					 $("#mouseover4").stop().animate({ opacity: 1, paddingLeft: "8px" }, 400 );
				});

				 $("#4").mouseout(function () {
					 $(this).css("color","#CCC");
					 $("#mouseover4").stop().animate({ opacity: 0, paddingLeft: "0px" }, 400 );
				});

				 $("#5").mouseover(function () {
					 $(this).css("color","#000");
					 $("#mouseover5").stop().animate({ opacity: 1, paddingLeft: "8px" }, 400 );
				});

				 $("#5").mouseout(function () {
					 $(this).css("color","#CCC");
					 $("#mouseover5").stop().animate({ opacity: 0, paddingLeft: "0px" }, 400 );
				});

				 $("#6").mouseover(function () {
					 $(this).css("color","#000");
					 $("#mouseover6").stop().animate({ opacity: 1, paddingLeft: "8px" }, 400 );
				});

				 $("#6").mouseout(function () {
					 $(this).css("color","#CCC");
					 $("#mouseover6").stop().animate({ opacity: 0, paddingLeft: "0px" }, 400 );
				});
				
});
    

