$(function() {
            setInterval("rotateImages()", 2000);
			$('.imgArt a').lightBox();
        });

function rotateImages() {
	var oCurPhoto = $('#carousel div.current');
	var oNxtPhoto = oCurPhoto.next();
	if (oNxtPhoto.length == 0)
		oNxtPhoto = $('#carousel div:first');

	oCurPhoto.removeClass('current').addClass('previous');
	oNxtPhoto.css({ opacity: 0.0 }).addClass('current').animate({ opacity: 1.0 }, 500,
		function() {
			oCurPhoto.removeClass('previous');
		});
}

// -- Google Maps --
function initialize()
{
	var latlng = new google.maps.LatLng(10.500693,-66.884197);
	var myOptions = 
	{
		zoom: 17,
		disableDefaultUI: true,
		center: latlng,
		mapTypeId: google.maps.MapTypeId.ROADMAP
	};
	var map = new google.maps.Map(document.getElementById("myMap"),myOptions);
	var image = "images/logo_100x39.jpg";
	var latlngIMG = new google.maps.LatLng(10.50064,-66.883639);
	var marker = new google.maps.Marker({
		position:latlngIMG,
		map:map,
		title:"Shape Estudio Creativo",
		icon:image
	});
}

var RecaptchaOptions = 
{
    theme : 'clean'
};
