

jQuery(function ($) {
	$('#qtranslate-chooser li a').addClass("button2");
	
	$('.submenu li a').addClass("button2 green");
	$('.child-pages li a').addClass("button2 green");
	
	$('.button2').each(function(){
		var b = $(this);
		var tt = b.text() || b.val();
		if ($(':submit,:button2',this)) {
			b = $('<a>').insertAfter(this). addClass(this.className).attr('id',this.id).attr('href',this.href);
			$(this).remove();
		}
		b.text('').css({cursor:'pointer'}). prepend('<i></i>').append($('<span>').text(tt).append('<i></i><span></span>'));
	});
	
	
	
	
	// Corrige le formulaire Pods
	$('.pod_form input.button').value = "Envoyer";
	
	
	
	
});




jQuery(function($){
	
	$('.imageMenu a').children().hide();
	$('.imageMenu a').hover( function () { $(this).children().fadeIn(); }, function () { $(this).children().fadeOut(); }); 
	
});



