/*
 * jQuery Init
 *
 * Copyright (c) 2008 Kévin Levain
 * Dual licensed under GPL license.
 *
 * $Date: 2008-05-10 19:35:00 (Wed, 06 Feb 2008) $
 */

$(document).ready(function(){

	//gestion liens externes
	$('a.lien_ext').click(function(){
		this.target = "_blank";
	});
	/*// 
	//gestion des effect sur les boutons principaux
	$("#nav1 a").hover(function(){
		$(this).animate({
			paddingTop:'10px',
			height:'20px'
		}, 150);			
	},function(){
		//rollOut
		$(this).animate({
			paddingTop:'14px',
			height:'16px'
		}, 150);
	});
	
	$("a#blog").hover(function(){
		$(this).animate({
			top:'84px'
		}, 150);			
	},function(){
		//rollOut
		$(this).animate({
			top:'74px'
		}, 150);
	});
	
	$("#nav3 a").hover(function(){
		$(this).animate({
			borderBottomWidth:'4px'
		}, 150);			
	},function(){
		//rollOut
		$(this).animate({
			borderBottomWidth:'0'
		}, 150);
	});
*/
});