jQuery.noConflict(); 
jQuery(document).ready(function($)
{
	$('#tresor_hover').hide();
	$('#tresor').hover(function () {
		$(this).children('#tresor_hover').delay(100).fadeIn(300);
	}, function () {
		$(this).children('#tresor_hover').delay(100).fadeOut('fast');
	});
});
