/*
	Funcões jQuery
	@autor: Eduardo Cervan
	@date: 10/09/2009
	@version 1.1
	@descripition: Todas as funções JS do projeto encontram-se neste arquivo

*/
	 



	jQuery(document).ready(function(){
		jQuery('#conteudoPagina').load('home.php');
		
	});
	
	
	function abreIndex(){
		jQuery('#conteudoPagina').fadeOut(1).load('home.php').fadeIn(1000);
		}
		
	function abreAlbum(){
		jQuery('#conteudoPagina').fadeOut(1).load('album.php').fadeIn(1000);
		}

	function abreReserva(){
		jQuery('#conteudoPagina').fadeOut(1).load('reserva.php').fadeIn(1000);
		}
	function abreContato(){
		jQuery('#conteudoPagina').fadeOut(1).load('contato.php').fadeIn(1000);
		}
	
	