$(document).ready(function() {
	$('#nav_result li').click(function(){
		$(this).parent().children("li").removeClass("current");
		$(this).addClass("current");
		$('#content div.entity').hide();
		var n = $(this).parent().children("li").index(this);
		$('#content div.entity').eq(n).show();
		$('.page').hide();
		$('#content div.entity').children('.main').children('.UI_page_1').eq(n).show();
		$('p.numero_page span').text('Page 1');

		$('a.nav').children('img').attr('src','/themes/zebre-rouge/images/icons/page_off.png');
		$('a.page_1').children('img').attr('src','/themes/zebre-rouge/images/icons/page_on.png');
	});
	
	$('a.nav').click(function() {
		var ParentID = $(this).parent().parent().parent().parent('.entity').attr('id');	
		
		var NumPage = $(this).children().attr("alt"); 				
		var CSSClass = $(this).attr('class');
		
		var Tab = CSSClass.split('nav');
		var Link = Tab[1];		
		var NumberLink = Link.split('page_');
		$('.page').hide();
		$('#'+ ParentID).children('.main').children('.UI_page_' + NumberLink[1]).show();
		$('#'+ ParentID + ' > .main > .pagination > .col1 > p.numero_page span').text(NumPage);

		$('a.nav').not(Link).attr('style','font-weight:normal;');
		$(this).attr('style','font-weight:bold;');
		$('a.page_'+NumberLink[1]).attr('style','font-weight:bold;');
		
		return false;
	});
});

