$(document).ready(function(){


});
function showContactForm() {

	$('div#contents').load('/struct/contact_form.php','', function(){

			$('#panel_mail_us').fadeIn('medium');
	
		});	
}

function submitContactForm(){
	
	
	postAjaxRequest('#send_mail_contact', '/actions/doContact_bones.php', '', 'div#panel_form');
	
	
}
function showBio() {

	$('.section_panel').fadeOut();
	$('#panel_live').fadeOut(function (){
		
	});
	$('div#contents').load('/struct/biografia.php','', function(){

		$('#panel_bio').fadeIn();
		$('div.scrollpane').jScrollPane({showArrows:true});

	});

	

}
function showGallery() {

	$('.section_panel').fadeOut();

		$('div#contents').load('/struct/photos.php','', function(){
			 
			$('#panel_photo').fadeIn();
			$('div.scrollpane').jScrollPane({showArrows:true});
			$("a[rel^='prettyPhoto']").prettyPhoto({
			theme: 'dark_rounded'/* light_rounded / dark_rounded / light_square / dark_square */

			});


		});
	}

function showAlbums() {

	$('.section_panel').fadeOut();

		$('div#contents').load('/struct/albums.php','', function(){
			 
			$('#panel_albums').fadeIn();
			$('div.scrollpane').jScrollPane({showArrows:true});
			$("a[rel^='prettyPhoto']").prettyPhoto({
			theme: 'dark_rounded'/* light_rounded / dark_rounded / light_square / dark_square */

			});


		});
	}