$(document).ready(function() {
	
	//FAIRE APPARAITRE LES OBJETS FLASH APRES 100 MS ...
	window.setTimeout('showObjects()', 100);
	
	$(".lesFichiers").click(function(){
		if($(this).attr("rel")!='-1'){
			window.location.assign($(this).attr("rel"));
		}
	});


	var tableResultats = $('.tableResultats');
	
	if( tableResultats.length ) {
		
		tableResultats.find('tr')
			.hover(
				function () {
					  $(this).addClass('hover');
				},
				function () {
					$(this).removeClass('hover');
				}
			);
			$('#dateDebPubli').mask('99/99/9999');
			$('#dateFinPubli').mask('99/99/9999');

	};



});

/**
 * Fait apparaître les objets flash.
 * @return void
 */
function showObjects() {
	$("object").show();
}
