$().ready(function() {

	// Ouvre dans un nouvel onglet ou nouvelle fenetre
	$("a.external_link").click(function() {
		window.open(this.href); return false;
	});
	
	/* // validate the comment form when it is submitted
	$("#commentform").validate(); */

});

