
$(document).ready(function()
	{
	$(function () {
			$("#list1a").accordion();
//////////When you pass over me, I'm shining like the sun
		$('#langMenu li').find('a').each(function () {
			var $img = $('img.hover', this).css("opacity", "0");
			var $img = $('img.hover', this).css("display", "block");
			$(this).hover(function () {
				$img.stop().fadeTo(350, 1);
			}, function () {
				$img.stop().fadeTo(750, 0);
			});
		});
		
		$("#coupon").focus(function () {
				$(this).val("");
		});
		$("#courriel").focus(function () {
				$(this).val("");
		});
		$('input[type=checkbox],input[type=radio]').prettyCheckboxes();
	});
});
