Shadowbox.init({ overlayColor: "#86817A" });

$(document).ready(function() {


/* SOCIAL MEDIA (MOUSE-OVER)
------------------------------------------------------------------*/
	$("#social-media li a").hover(
		function() {
			$("<span class='hover'></span>").appendTo(this);
			$(this).find("span").stop(true, true).fadeIn("normal");
		},
		function() {
			$(this).find("span").stop(true, true).fadeOut("normal");
		}
	);


/* CAROUSEL
------------------------------------------------------------------*/
	$('#gallery').jcarousel({
        scroll: 3
    });


/* LIMPA OS CAMPOS DE FORMULÁRIOS (NEWS)
------------------------------------------------------------------*/
	swapValue = [];
	$("#news .text").each(function(i){
		swapValue[i] = $(this).val();
		$(this).focus(function(){
			if ($(this).val() == swapValue[i]) {
				$(this).val("");
			}
			$(this).addClass("focus");
		}).blur(function(){
			if ($.trim($(this).val()) == "") {
				$(this).val(swapValue[i]);
				$(this).removeClass("focus");
			}
		});
	});
	
});
