$(document).ready(function(){
	if($('body').hasClass('home')) {
		$('.breadcrumb').remove();
		$('#article').children('h1').remove();
	}
	$('a.LinkOut').removeClass();
	
	//Box Newsletter
	$('.boxNewsletter input#NewsLettersSubscribeMail').blur(function(){
		if ($(this).val() == '') {
			$(this).val('votre email...');
		}
	});
	$('.boxNewsletter input#NewsLettersSubscribeMail').focus(function(){
		if ($(this).val() == 'votre email...') {
			$(this).val('');
		}
	});
});
