/***************************************************************************
Fonctions Javascript pour cdbg.fr
****************************************************************************/

$(document).ready(function(){
	// ---------------------------------------------------------------------------------------------
	// MENUS
	// ---------------------------------------------------------------------------------------------
	$(".menul > a").click(function() {
		$(".menul > a").removeClass("current");
		$(this).addClass("current");
		$.post("inc/ajax_rpc.php",{ content: $(this).attr("rel")} ,function(data)
		{
			$("#content_left").html(data);
		});
	});
	$(".menur > a").click(function() {
		$(".menur > a").removeClass("current");
		$(this).addClass("current");
		$.post("inc/ajax_rpc.php",{ content: $(this).attr("rel")} ,function(data)
		{
			$("#content_right").html(data);
		});
	});
});

function envoyer_contact(side)
{
	$.post("inc/ajax_rpc.php",{
		content: 'sendmail',
		id: $("#contactid_"+side).val(),
		name: $("#name_"+side).val(),
		mail: $("#mail_"+side).val(),
		contenu: $("#contenu_"+side).val()
	} ,function(data)
	{
		$("#content_"+side).html(data);
	});
}
