function showmenu(){
    $("#categorieMenu li").hover(function(){
        $(this).find('ul:first').css({ visibility:"visible", display:"none" }).show();
    }, function(){
        $(this).find('ul:first').css({ visibility:"hidden" });
    });
}
$(document).ready(function(){
    showmenu();
	
	$('.tooltips').tipsy({gravity: 's'});
	
	/* Transparence Effect */
	var myTable = [".cart_availability a", "a.plusmoins-panier", "a.ajax_cart_block_remove_link"];
	var nbBloc = myTable.length;
			
	for (i = 0; i < nbBloc; i++) {
		$(myTable[i]).hover(function(){
			$(this).stop().animate({
				'opacity': 0.7
			}, 200)
		}, function(){
			$(this).stop().animate({
				'opacity': 1
			}, 200)
		})
	}
	
	/* Protect email */
	$('.nospam').each(function(){
		 var email = $(this).html();
		 email = email.replace("[arobase]","@");
		 email = email.replace("[point]",".");
		 $(this).html("<a href=\"mailto:"+email+"\">"+email+"</a>");
	});
	
	$('.notice_close').click( function() { $(".error").css('display','none'); });  
});
	
