function show_more(){
	document.getElementById('nav_more').style.display='';
	document.getElementById('btn_more').style.display='none';
}

function show_months(k){

	for (i=0;i<=5;i++){
		if(i==k){
		document.getElementById("m_"+i).style.display="";
		}else{
		document.getElementById("m_"+i).style.display="none";
		}
	}
}

var $jq = jQuery.noConflict();

$jq(document).ready(function() {
							 
							 
	$jq(".calendrier").hide();
	$jq(".calendrier").first().show();
	
	$jq(".row_doc a").hide();
	$jq(".row_doc a").first().show();

	$jq(".mois").click(function(){
							  
		$jq(".calendrier").hide();
		var id= $jq(this).attr("id");
		$jq("#m_"+id).show();
		
	});

	$jq(".show").click(function(){
							  
		$jq(".row_doc a").hide();
		var id= $jq(this).attr("id");
		$jq("#item_"+id).show();
		
	});
							 
	$jq(".video div").click(function(){
								   
		var ref= $jq(this).html();
		
		$jq(".video a").hide();
		$jq(".video a#vid_"+ref).show();
		
	});
	
	
	$jq(".nav .less").click(function(){

		var ref= ($jq(this).html()-1)*4;
		
		$jq(".presse a").css("display","none");
		
		
		$jq(".presse a#item_"+ref).show();
		$jq(".presse a#item_"+(ref+1)).show();
		$jq(".presse a#item_"+(ref+2)).show();
		$jq(".presse a#item_"+(ref+3)).show();
		
	});
	
	$jq(".nav #more").click(function(){
								   
		$jq(this).hide()
		$jq(".nav .less").show();
		
	});
	
	
});