/**
 * @author pfrumillon
 */

 Event.observe(window, 'load', function() {
 
 
// #########################################################################
// 						EQUIVALENT MIN HEIGHT CSS
// ######################################################################### 
	
	// @todo : uniquement pour IE
	if($('mainContent-content').getHeight() < 450){
		$('mainContent-content').style.height = '450px';
	}  


// #########################################################################
// 				EGALISE LA HAUTEUR DES DEUX COLONES PRINCIPALES
// #########################################################################   

	CSSColumns.equalise('leftContent','mainContent');	  

		
// #########################################################################
// 			REMPLACEMENT DU MENU HTML TYPO PAR UN JOLI FLASH QUI VA BIEN
// #########################################################################   
 
	var data = [];
	
	$$('#main-menu > ul > li').each(function (li) {
		
		var item = {
			'libelle': (li.down().innerHTML.replace("&amp;", "&").replace("&gt;", ">").replace("&lt;", "<").replace("&quote;", "\"")),
			'link': (li.down().href)			
		};		
		if(li.hasClassName("act")){
			item.active = "true";
		}
		
		if(li.down("ul")){
			item.children = [];
			li.select('ul > li').each(function (li) {
				
				var itemSub = {
					'libelle': (li.down().innerHTML.replace("&amp;", "&").replace("&gt;", ">").replace("&lt;", "<").replace("&quote;", "\"")),
					'link': (li.down().href)
				};				
				if(li.hasClassName("act")){
					itemSub.active = "true";
				}				
				item.children.push(itemSub);						
			});			
		}		
		data.push(item);		
	});

	//enlever la propriété winTripLink pour supprimer le bouton dans le flash
	var flashvars = {
		dataJson: encodeURIComponent(data.toJSON()),
		winTripLink: "http://www.festival-suddefrance.com/Contest.286.0.html"
	};	
	var params = {
		wmode: "transparent"
	};
	var attributes = {};

	swfobject.embedSWF("typo3conf/ext/belink_suddefrance_tpl/res/swf/mainMenu_ny.swf", "mainMenu-flash", "635", "110", "9.0.0","typo3conf/ext/belink_suddefrance_tpl/res/swf/expressInstall.swf", flashvars, params, attributes);
		
		
	}); 