$(document).ready(function(){
		
		$('#push_internat a').click(function(){
			
			if($('#version_internationale').html().length>6){
			
				$('#version_internationale').fadeIn();
				
			}else{
				
				var html = $.ajax({type: 'POST', url: '/version_internationale.php', async: false }).responseText;
		
				$('#version_internationale').html(html).fadeIn();
		
			}
		
			return false;
		
		});
		
		$('#partenaires_footer ul li a').each(function(){
		
			var text = $(this).parent().find('img').attr('src');
			
			var text_final = '<img src="'+text+'" alt="" />';
		
			$(this).CreateBubblePopup({
			
				selectable: false,
				position : 'top',
				align	 : 'center',
				innerHtml: text_final,
				innerHtmlStyle: {
									color:'#656666', 
									'text-align':'center'
								},
													
				themeName: 	'all-blue',
				themePath: 	'/sites/all/themes/lmt/css/navpics/jquerybubblepopup-theme'
			 
			});
		
		});
		
		$('.top_page').click(function(){
		
			$('html, body').animate({scrollTop:0}, 700);
			return false;
		
		});

});
