/* ****************************************************

	@file		  global.js
	@description  Comportements globaux
	@version	  20091126

***************************************************** */
(function($){

	$(function() {

/*
 * @section Liens externes PDF dans une nouvelle fenêtre
******************************************************************************/
		$('a[href$=\.pdf]').attr('target', '_blank').addClass('lien-pdf').parent().addClass('item-pdf');
		$('a[href^=http://]').not('a[href*='+window.location.host+']').attr('target', '_blank');

/*
 * @section Soumission automatique des formulaires
******************************************************************************/
		$('body.template-nouvelles #categorie').change(function() {
			$(this).parents('form').each(function() {
				this.submit();
			});
		});

		$('.documentation-filtre select').change(function() {
			$(this).parents('form').each(function() {
				this.submit();
			});
		});

/*
 * @section Tooltips
******************************************************************************/

		$('a.tooltip').tooltip({
			delay : 100,
			track : true,
			showURL : false
		});

/*
 * @section Premiers H2 et H3
******************************************************************************/

		$('h2:first-child, h3:first-child').addClass('first-child');

/*
 * @section Afficher/cacher le formulaire d’ajout de document
******************************************************************************/

		$('#documentation-directory-page .ajout .form').hide().prev().find('a').click(function() {
			$(this).parent().next().slideToggle(200);
			return false;
		}).parents('.ajout.visible').find('.form').show();

	});

})(jQuery);
