$(document).ready(function(){
	$('.main-navig li').hover(
		function() {
			$('img:last' , this).fadeOut('slow');
			$('a' , this).animate( {left:'-0.5em'}, 300 );
			},
		function() {
			$('img:last' , this).fadeIn('slow');
			$('a' , this).animate( {left:'0'}, 500 );
			}
			
		);
	/*
		$(".mosaique").hover( 
		function() {
			$("span" , this).animate( {bottom:'0'}, 300 );							
		},
		function() {
			$("span" , this).animate( {bottom:'-130px'}, 300 );							
		}
		);
	*/
});
