

jQuery(document).ready(function(){



///////////////////////////////////////////////////COMMENTS MANAGEMENT////////////////////////////////////////////////////////////////


jQuery('.all_comments').bind("click","",showAllComments);

function showAllComments() {

//load the iframe
jQuery("#left_content").load(allCommentsUri,'',function() {

//to the top of the document
document.location.href='#left_content';

});

return false;
}

///////////////////////////////////////////////////END COMMENTS MANAGEMENT////////////////////////////////////////////////////////////////

});



function submitComment(){

jQuery('div.post_comment').load(ajaxuri,{'method':'get','pseudo':document.getElementById('pseudo').value, 'titre':document.getElementById('titre').value,'message':document.getElementById('message').value,'process':document.getElementById('process').value });

return false;

}




