$(document).ready(function() {
	$(".blank").attr("target", "_blank"); //Mise en place des target valides xhtml strict	
	$(".print").click(
		function() { 
			javascript:window.print(); 
		}
	);
		
	$(".ft_js_ext").hide(); //On cache le message quand le js est active
		
	//$('.ft_scroll_pane').jScrollPane({scrollbarWidth:5, scrollbarMargin:5});	
	
	/*GESTION DES CHAMPS DATE*/	
	//$('.form_date').datepicker($.datepicker.regional['fr']);	
	
	//hover states on the static widgets
	/*$('#dialog_link, ul#icons li').hover(
		function() { $(this).addClass('ui-state-hover'); }, 
		function() { $(this).removeClass('ui-state-hover'); }
	);*/
	
	
	
});