var $tbxQuery;

jQuery.fn.extend(
{  
	slideRightShow: function() 
	{
		return this.each(function() 
		{
			jQuery(this).animate({width: 'show'});    
		});
	},
	slideLeftHide: function() 
	{    
		return this.each(function() 
		{      
			jQuery(this).animate({width: 'hide'});
		});
	}
});

function doGoogleSearch()
{	
	document.location = 'rechercher.aspx?q='+$tbxQuery.val();
}

//Fonction JQuery qui s'execute qd le document est pret
$(document).ready(function () 
{
	$('#btnSearch').click(doGoogleSearch);
	$tbxQuery = $('#tbxQuery');
	
	//lightBox
	$("a[rel*=lightbox]").lightbox();
	
	//Dropdown des sous menus						 
	$('ul.mainmenu>li').hoverIntent(
		function (){$(this).find('>ul').css({width:220}).slideDown('fast');},
		function (){$(this).find('>ul').slideUp('fast');}				
	);
	
	//Dropdown des sous sous  menus						 
	$('ul.mainmenu>li ul li').hoverIntent(
		function (){$(this).find('>ul').css({width:220}).slideRightShow('fast');},
		function (){$(this).find('>ul').slideLeftHide('fast');}
	);
	
	//Mise en page en mode Article
	$('.modTextTag-Article .content').columnize({width:280, lastNeverTallest: true });
	$('.newsPepper').columnize({width:475});
	
});
