$(document).ready(function() {
	$('input[id=address]').focus(function() {
		value = $(this).val();
		if(value == 'Entrez ici votre adresse email') {
			$(this).val('');
			$(this).attr('style', 'color:inherit;');
		}
	});
	$('input[id=address]').blur(function() {
		value = $(this).val();
		if(value == '') {
			$(this).val('Entrez ici votre adresse email');
			$(this).attr('style', 'color:#CCC;');
		}
	});
	if($('input[id=address]').val() == '') {
		$('input[id=address]').val('Entrez ici votre adresse email');
		$('input[id=address]').attr('style', 'color:#CCC;');
	}
	$('#top20 .bookmakers').hide();
	$('#top20 .header').addClass('headerUp');
	hidden_books = true;
	$('#top20 .h2').click(function() {
		if (hidden_books) {
			$('#top20 .bookmakers').show();
			$('#top20 .header').removeClass('headerUp');
		} else {
			$('#top20 .bookmakers').hide();
			$('#top20 .header').addClass('headerUp');
		}
		hidden_books = !hidden_books;
	});
});