var AC_FL_RunContent = 0;
var ord = Math.random()*10000000000000000;

$(document).ready(function () {
	$("#strN").focus( function() {
		if($("#strN").val() == 'votre courriel') {
			$("#strN").val('');
		}
	});
	$("#strN").blur( function() {
		if($("#strN").val() == '') {
			$("#strN").val('votre courriel');
		}
	});
	
	$("a[name='fb_share']").click( function() {
		fb_share();
	});
});

function fb_share() {
	$.ajax({
		type: "POST",
		url: "http://www.conseilsnutrition.tv/ajax/fb_share.php",
		data: 'url='+window.location.pathname,
		success: function(msg){
		}
	});
}