jd_start = function(){
	$("#bio").toggle();
}
jd_load = function(nombre){
	$("#big_image").fadeOut(200, 
		function(){
			$(this).attr("src", "img/"+nombre+".jpg").load( function(){
																$(this).fadeIn(200)});
															});
	$("#content").fadeOut(200, function(){
		$(this).load('dj/'+nombre+'_ajax','',function(){$(this).fadeIn(200);});
	});
	
	$(".menu").show();
	$("#"+nombre).hide();
	
}
jd_load_chart = function(nombre){
	$("#content").fadeOut(200, function(){
		$(this).load('dj/chart/'+nombre,'',function(){$(this).fadeIn(200);
			$("#month").html(nombre.slice(4,6));
			$("#year").html(nombre.slice(0,4));
			});
	});

}

send_form=function(){
	$.ajax({  
	  type: "POST",  
	  url: "dj/send_contact_ajax",  
	  data: $('form').serialize(),  
	  success: function() {  
	    $('form').html("<div id='message'>Enviando...</div>");  
	    $('form').html("<h2>Formulario enviado!</h2>")
	    }
	});
}
