$(document).ready(function(){
	
	$(function () {

		// Add class for CSS support in all browsers
		if ($('#articleList').length != 0) {
			$('article:first').addClass('first-child');
			$('article:last').addClass('last-child');
		};
		
		//If class=inFieldLabel, Move the label within field and hide them onClick (jquery.infieldlabel.min.js)
		if ($('form.inFieldLabel').lenght !=0) {
			$('.inFieldLabel label').inFieldLabels();		
		};
		
		// Traduction du post nav en fr
		if ($('body').attr('id') == "fr"){
			$('a.nextpostslink').text('Suivante');
			$('a.previouspostslink').text('Précédente');
		} else {
			$('a.nextpostslink').text('Next');
			$('a.previouspostslink').text('Previous');
		};

	});

});
