/* spécifique */

jQuery(document).ready(function () {
	/* cache les menus deroulants */
	jQuery('.menu_item_block').css('display', 'none');
	
	var i = jQuery.preloadImages(['/common/images_site/fond.jpg']);
	
	jQuery(i).load(function() {
		if(jQuery('#background'))
		{
			jQuery('#background').css('opacity', '0');
			jQuery('#background').css('background-image', 'url(\'/common/images_site/fond.jpg\')');
			jQuery('#background').animate({opacity:100},25000);
		}
	});
	
	/* precharge le fond */
	/*
	var myImages = new Asset.images(['/common/images_site/fond.jpg'], {
	    onComplete: function(){
			if(jQuery('#background'))
			{
				jQuery('#background').css('opacity', '0');
				jQuery('#background').css('background-image', 'url(\'/common/images_site/fond.jpg\')');
				jQuery('#background').set('tween', {duration: 25000});
				jQuery('#background').tween('opacity', '0%', '100%');
			}
	    }
	});
	*/
});
