$(document).ready(function(){
    
    /* appliquer */
	var thisRub = $('#navigation').find('a.selected:first');
	var lvl = thisRub.next('div').next('ul').find('a.selected');
	var theme = $('#navpicto').find('div').attr('id');
	
	if ( thisRub.size() > 0) {
		
		if ( lvl.size() > 0) {
			lvl.next('.puce').css({ background: "url("+THEME_URL+"img/"+theme+"/selected-golf-massane.png) center left no-repeat" });
		} else {
			thisRub.next('.puce').css({ background: "url("+THEME_URL+"img/"+theme+"/selected-golf-massane.png) center left no-repeat" });
		}
		
	}
   
    /* menu : accordion jquery ui 
	$('#navigation').accordion({
		active: ".selected",
		header: '.head',
		navigation: true,
		autoHeight: false
	}); */
	
	/* menu : gestion du plan 3D */
	
	var current = $("#navigation").find("a[@alt$='3d']:first");
	if (current.size() < 1)
			current = $("#navigation").find("a[@alt$='3D']:first");
	
	var className = current.attr("class");
	className = className+" thickbox";
	
	current.attr("href",THEME_URL+"img/accueil/ajaxSwf.php?keepThis=true&TB_iframe=true&modal=true&width=900&height=490");
	current.attr("class",className);
	
	current.click(function() {
		if ($.browser.version == "7.0" ) {
   			//$('#animflash').css({"visibility": "hidden" });
   		}
	}); /* fermeture voir thickbox.js */
	
	$.getScript(THEME_URL+'jscripts/vendors/thickbox.js');
	
	/* menu : gestion des contact */
	var current = $("#navigation").find("a[@alt^='contact']");
	current.attr("href",SITE_URL+"fr/accueil/contact/contact.html");
	
});