// Préchargement des images.
jQuery(function($)
{
	var thumbs_cat = [
		'bottom-left', 'bottom-left-hover', 'bottom-left-new', 'bottom-right',
		'bottom-right-hover', 'bottom-right-new', 'top-left', 'top-left-hover',
		'top-left-new', 'top-right', 'top-right-hover', 'top-right-new'
	];
	document.preload_images = [];
	for (var i = 0, l = thumbs_cat.length; i < l; i++)
	{
		document.preload_images[i] = new Image();
		document.preload_images[i].src = style_path
			+ '/thumbs-cat/border-' + thumbs_cat[i] + '.gif';
	}
	thumbs_cat.concat(
		'top-left-hover-msg', 'top-left-new-msg', 'top-right-hover-msg', 'top-right-new-msg'
	);
	for (var i = 0, l = thumbs_cat.length; i < l; i++)
	{
		document.preload_images[i] = new Image();
		document.preload_images[i].src = style_path
			+ '/thumbs-img/border-' + thumbs_cat[i] + '.gif';
	}
});

// Hover sur les éléments du menu d'outils, pour IE8.0 uniquement.
jQuery(function($)
{
	if (!$.browser.msie || $.browser.version != '8.0')
	{
		return;
	}
	$('#obj_tool_menu li').mouseover(function()
	{
		$(this).css('backgroundColor', '#F0E9DA');
	});
	$('#obj_tool_menu').mouseout(function()
	{
		$('#obj_tool_menu li').css('backgroundColor', '#F8FAFC');
	});
});

