$(function() {
	Site = {
		boot: function() {
			$('.fotos').slider();
		},
		contato: function() {
			$('.contato-texto').hide();
			$('a.open').toggle(function() {
				$('.contato-texto').fadeIn(200);
				$('.fotos').fadeOut(200);
			}, function() {
				$('.contato-texto').fadeOut(200);
				$('.fotos').fadeIn(200);
			});
			$('.ico-reload').click(function() {
				$('.contato-texto').fadeOut(200);
				$('.fotos').fadeIn(200);
			});
		}
	}
	//starta o site
	Site.boot();
	Site.contato();
});
