function Roll(style, id)
{
	document.getElementById("bt_menu_"+id).className = style;
}

function RollSubMenu(style, id)
{
	document.getElementById("bt_sous_menu_"+id).className = style;
}

function SelectC(id)
{
	document.getElementById("frise").src = '/design/grande_ecole/images/frise/'+id+'.gif';
		for (i=1; i<7; i++) {
			document.getElementById(i).style.display = 'none';
		}
	document.getElementById(id).style.display = 'block';
}

function RefFlash(link)
{
	var line="<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000'codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width='500' height='400'> <param name='movie' value='http://www.youtube.com/v/"+link+"'> <param name='quality' value='high'> <param name='wmode' value='transparent' /> <embed wmode='transparent' src='http://www.youtube.com/v/"+link+"' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='500' height='400'></embed> </object> ";
	document.getElementById("VideoHome").innerHTML = line; 
}


$(document).ready(function(){
	
	// Fonctionnement de la frise du site "Grande Ecole"
	$(".switch").click(function () {
		document.getElementById("philo").style.display = 'none';
		document.getElementById("content_frise").style.visibility = 'visible';
		
		document.getElementById("frise").style.display = 'none';
		document.getElementById("frise").src = '/design/grande_ecole/images/frise/'+this.id+'.gif';
		$("#frise").fadeIn("normal");
		for (i=1; i<7; i++) {
			document.getElementById(i).style.visibility = 'hidden';
		}
		document.getElementById(this.id).style.visibility = 'visible';
		//$("#"+this.id).fadeIn("normal");
	}); 
	
	
	// Fonctionnement de la frise du site "MSc"
	$(".switch_msc").click(function () {
		//document.getElementById("philo").style.display = 'none';
		document.getElementById("content_frise").style.display = 'block';
		
		document.getElementById("frise").style.display = 'none';
		document.getElementById("frise").src = '/design/msc/images/frise/'+this.id+'.gif';
		$("#frise").fadeIn("normal");
		for (i=1; i<6; i++) {
			document.getElementById(i).style.display = 'none';
		}
		document.getElementById(this.id).style.display = 'block';
	});

	
	$(function() {
		$("#accordion").accordion({active: false, clearStyle: true, collapsible: true});
		
		for (i=1;i<=20;i++)
		{
			$("#accordion"+i).accordion({active: false, clearStyle: true, collapsible: true});
		}
		for (i=1;i<=20;i++)
		{
			$("#accordion"+i+"b").accordion({active: false, clearStyle: true, collapsible: true});
		}
	});
	
	
	$(function() {
		$("#tabs").tabs();
		
		for (i=1;i<=40;i++)
		{
			$("#tabs"+i).tabs();
		}
	});

	
	// Menu de premier niveau (apparition au survol, disparition lorsqu'on enleve la souris)
	$('#Nav > li').hover(
		function() {
			$(this).find('ul.Menu').fadeIn("normal");
		},
		function() {
			$(this).find('ul.Menu').hide();
		}
	);
	
	
	// Apparition du SiteMap lors du click sur la case du tableau correspondante
	$("#btsitemap").click(function () {
		  //document.getElementById("sitemap").style.display = 'block';
		  $("#sitemap").slideToggle("normal");
	}); 
	
	
	$('#Map area').hover(
		function() {
			$(this).css("cursor", "pointer");
			$(this).css("cursor", "hand");
		}
	);

});
