$(document).ready(function()
{
	if ($('#indexgallerylist').length == 1)
	{
		var imgurl = $('#indexgallerylist li').find('img')[0].src;
		$('#indexgallerypic').append('<div class="indexgallerypicwrap" style="display: none;"><img src="'+imgurl+'" width="581"/></div>');
		$('.indexgallerypicwrap').fadeIn('slow');
	
		$('#indexgallerylist li').hover(function()
				{
					$(this).siblings().css('background-color', 'transparent');
					$(this).css('backgroundColor','#eee');
	
					var newimgurl = $(this).find('img')[0].src;
	
					$('#indexgallerypic .indexgallerypicwrap').fadeOut('slow',function()
							{
								$(this).remove();
								$('#indexgallerypic').append('<div class="indexgallerypicwrap" style="display: none;"><img src="'+newimgurl+'" width="581"/></div>');
								$('.indexgallerypicwrap').fadeIn('slow');
							});
				});
	}

	if ($('#fiere').length == 1)
	{
		$('#fiere img').wrap("<div class='imgwrap100 left'></div>");
	}
});
