var Width = "630";
var Height = "20";

$(document).ready(function()
{
	windowLocation = absolutePath();
	listePresse(windowLocation);
	var cadre1 = new classFdRound("#cadreDate", "#ffffff", "#8CBE14", 5, "bd, bg");
	cadre1.init();
	
	var liste1 = new classListeDeroule("ul.navigator","div.date_cache","li.toggleArticle",".onglet","+","-",630,20,2);
	liste1.init();
	
	$(".contenuOnglet").each(function()
	{
		$this = $(this);
		if($this.find(".UL").html() != null)
		{
			var pager = new classPagerUL("#"+this.id, ".UL", "#liste_");
			pager.init();
			$this.find(".UL").each(function()
			{
				degradeListe("#"+$this[0].id+" #"+this.id, Width);
			});
		}
		
	});


	$(".Article2").each(function()
	{
		$(this).css("display", "none");
		
	});


	var lesOnglets = new classOnglets(".ongletsTitle",".contenuOnglet","#cont_", 157, 30, 40,"#fichier_",".ongletFichier");
	lesOnglets.init();
});

function listePresse(pWindowLocation)
{

	$(".onglet2 span").each(function()
	{
		$(this).hover(function(e)
		{
			$(".onglet2 span").removeClass("current");
			$(this).addClass("current");
		}, function()
		{
			$(this).removeClass("current");
		});
		$(this).click(function(e)
		{
			e.preventDefault();
			$(".onglet2 span").removeClass("current");
			$(this).removeClass("current");
			getPresseInfos(this,pWindowLocation);
		});
	});
}


function getPresseInfos(pEl,pWindowLocation)
{
	var offreInfos = new Object();
	var winLocation = pWindowLocation;
	var infosTitle = $(pEl).text();
	offreInfos["nom"] = infosTitle.substr(2, (infosTitle.length));
	offreInfos["fiche"] = $(pEl).parent().parent().find(".date_cache").html();
	var n = "";
	
	n += "<div id='message' >";
	n += offreInfos["fiche"];
	n += "</div>";
	var lightBox = new classLightBox("#dialog", "#ffffff", "#ffffff","all",n,500);
	lightBox.init();
}

