// HIGHTLIGHT DIV
function divSurvol ( div, couleur ) {
	this.div = $('#' + div) ;
	this.div.oldColor = couleur ;
	this.div.mouseover ( function() { this.style.backgroundColor = '#FFC' ;  } );
	this.div.mouseout ( function() { this.style.backgroundColor = couleur  ; } );
}
// VAL SELECT
function valeurSelect(f,e) {
	var v = document.forms[f].elements[e].options[document.forms[f].elements[e].selectedIndex].value ;
	return v ;
}
// DIV AUTRES LOTO / JOURNEE
function getVisibility ( id, enfant ) {
	if ( $("#"+id).css("display") == "none" )
	{
		$("#"+enfant).css("display", "none" ) ;
		$("#"+id).css("height","55px") ;
		$("#"+id).slideDown("speed", function(){ $("#"+enfant).fadeIn("slow") ; }) ; 
	} else {
		$("#"+enfant).fadeOut("slow") ;
		$("#"+id).slideUp("speed") ;
	 }
}
