$(document).ready(function()	{
	init();	
});

function init(){
	$('.grille-image .image').unbind('mouseover');
	$('.grille-image .image').unbind('mouseout');
	$('.liste-miniatures .file').unbind('click');
				
	$('.grille-image .image').mouseover(function(){
		var id=$(this).attr('id');
		id = id.replace('image-', '');
		$('#legende-'+id).show();
	});
	$('.grille-image .image').mouseout(function(){
		$('.legende span').hide();
	});
	$('.liste-miniatures .file').click(function(){
		var id = $(this).parent().attr('id');
		id = id.replace('image-', '');
		$('#main-image').html('<img class="file" src="'+$('#url-'+id).val()+'" />');
		$('#legende').html($('#legende-'+id).val());

});

$('.grille-home .image').mouseout(function(){
		$('.legende span').hide();
	});
	
	$('.grille-home .image').mouseover(function(){
		$('.legende span').show();
	});
	
	

}


