	$(document).ready(function(){

		$('.menu_right a').mouseover(function(){
			$(this).css({ color: $(this).parent().parent().attr('color') });
		})
		$('.menu_right a').mouseout(function(){
			$(this).css({ color:'#515151' });
		});
		
		$('.menu_right').find('img').each(function(x, elem){
			$(this).css({ backgroundColor: $(this).parent().parent().parent().attr('color') });
		});
		
		/* [ print icon ] */
		$('a.print_icon img').css({backgroundColor: '#515151'})
		.mouseover(function(){
			$(this).css({backgroundColor: '#' + $(this).attr('color')});
		}).mouseout(function(){
			$(this).css({backgroundColor: '#515151'});
		});		
		
		$('div.content a, div#hr_b_links a, div#research_text').css({ color:'#' + $('div.content').attr('color')})
		/*$('div.content a').attr('target', '_blank');
		$('div.content a.titre').attr('target', '');
		$('div.content a.non_targeret').attr('target', '');*/
	
		/*$('div.content div.pagination a').attr('target', '');	*/	
		$('div.content a.link_icon, div#hr_b_links a.link_icon').before('<img class="link_icon" src="' + LINK_ICON_HTTP + '" width="11" height="10" />&nbsp;');			

		$('div.menu_left_secundier a').mouseover(function(){
			$(this).css({ color: '#' + $(this).attr('color') });
		}).mouseout(function(){
			$(this).css({ color: '#7C7C7C' });
		});
		
		$('div.content img.link_icon, div#hr_b_links img.link_icon').css({
			backgroundColor: '#' + $('div.content').attr('color')
		});
		
		/* [ START: pagination ] */
			$('div.pagination a').css({ color: '#' + $('div.content').attr('color')	});
			$('div.pagination a.pagination_next').before('<img class="link_icon" src="' + PAGINATION_NEXT_ICON_HTTP + '" width="11" height="10" />&nbsp;');
			$('div.pagination a.pagination_prev').after('&nbsp;<img class="link_icon" src="' + PAGINATION_PREV_ICON_HTTP + '" width="11" height="10" />');
			
			$('div.pagination img.link_icon').css({
				backgroundColor: '#' + $('div.content').attr('color')
			});
		/* [ END: pagination ] */
			/* [ START: pagination2 ] */
			
			if($('#pagination_next2').length > 0){
				ancho='&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;';
			}else{
				ancho='&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;';
			}
			
			$('div.pagination a.pagination_prev2').after( ancho );
			
		
		/* [ END: pagination 2] */
		
		/* plan du site */
		$('div.plan_du_site a.sous_rub').mouseover(function(){
			$(this).css({ color: $(this).attr('color') });
		}).mouseout(function(){
			$(this).css({ color: '#7C7C7C' });
		});
		
		$('div#home_linker').click(function(){
			document.location.href = 'index.php';
		});
	});
	
	<!--
window.onerror = new Function("return true")
//--> 
