var canOpen= true;

function initPasseport(menu_item){
	
	///
	if($("#content_6").is("div")){
		if($("#content_7").height() > $("#content_6").height()){
			$("#content").height($("#content_7").height());
		}
		else{
			$("#content").height($("#content_6").height());
		}
	}
	if($("#content_3").is("div") || $("#content_4").is("div")){
		if($("#content_3").height() > $("#content_4").height() && $("#content_3").height() > $("#submenu").height())
			$("#content").height($("#content_3").height());
		else if($("#content_4").height() > $("#content_3").height() && $("#content_4").height() > $("#submenu").height()){
			$("#content").height($("#content_4").height());
		}else{
			$("#content").height($("#submenu").height());
		}
	}
	if($("#content_2").is("div")){
		if($("#content_2").height() > $("#submenu").height()){
			$("#content").height($("#content_2").height());
		}else{
			$("#content").height($("#submenu").height());
		}
	}
	if($("#content_5").is("div")){
		$("#content").height($("#content_5").height() + 100);
		//alert($("#content_5").height());
	}
	///

	
	//Stripe Tables
	$("tr:even td", "table.tb_songlist").addClass("even");
	var aMenu = menu_item
	

	$("#m_artistes","ul#menu").bind("mouseover", function(){
		$("#sm_artistes", "#m_artistes").show();
	}).bind("mouseout", function(){
		$("#sm_artistes", "#m_artistes").hide();
	});
	
	
};