// <![CDATA[

	$(document).ready(function() {
		if($('#keywords').length){
			$('#keywords').inputLabel('Search');
		};
		
		if($('a.boxLexiqueListTitle').length){
			$('a.boxLexiqueListTitle').click(function(){
				$('a.boxLexiqueListTitle').removeClass('open');
				$('div.hideBoxLexique').hide();
				$(this).addClass('open').parent().next().show();
			});
		}
		
		if($('a.filterTitle').length){
			$('a.filterTitle').click(function(){
				$('a.filterTitle').removeClass('open');
				$('div.subLeftMenu').hide();
				$(this).addClass('open').parent().next().show();
			});
		}
		if($('.tableResultHeader td').length){
			$('.tableResultHeader td').each(function(index){
				$('.tableResultHeader td').eq(index).click(function(){
					$(this).eq(index).addClass('slelected');
					$(this).eq(index).removeClass('slelected');
				});
			})
		}
		
		if($('.tableList').length){
			$('table.tableList tr.tableResultHeader').each(function(index){
				$('table.tableList tr.tableResultHeader td:first').eq(index).css({
					'background':	'#767476 url(images/background/blank.jpg) 0 0 no-repeat',
					'padding-left':	'25px'
				});
			});	
		}
		
		if($('.subLeftMenu a').length){
			$('.subLeftMenu a').each(function(index){
				$('.subLeftMenu a').eq(index).click(function(){
					$(this).eq(index).addClass('checked');
					$(this).eq(index).removeClass('checked');
				});
			})
		}

	});

// ]]>
	
