var button = "";

$(document).ready(function(){
		
	// -- Impression de la page --------------------->
	$("#fa_i_prn, .lien_print").click(function(){
		window.print();	 
		return false;
	}) 
    
	// -- Bubblepopup ------------------------------->
	
	$('.avec_lien a').CreateBubblePopup({
		selectable: false,

		position : 'top',
		align	 : 'center',
		
		innerHtml: '<img src="scripts/js/bubblepopup/loading.gif" style="border:0px; vertical-align:middle; margin-right:10px; display:inline;" />',

		innerHtmlStyle: {
							color:'#FFFFFF', 
							'text-align':'center'
						},
											
		themeName: 	'all-black',
		themePath: 	'scripts/js/bubblepopup/jquerybubblepopup-theme'
	 
	});
	
	$('.avec_lien a').mouseover(function(){

			//get a reference object for "this" target element
			button = $(this);
			
			var lien = "scripts/php/ajax/"+$(this).attr("href");

			//load data asynchronously when mouse is over...
			$.get(lien, function(data) {
				button.SetBubblePopupInnerHtml(data, true);
			}); 

	});
	
});
