$(document).ready(function() {
	
	$(".top10 .item form").addClass('hiddenStructure');
	$("#film_box").removeClass('hiddenStructure');
	
	$(".top10 .item .change").click(function(){
		$("../form",this).toggleClass('hiddenStructure');
	});
	
	// liens d'evitement
	$(".accessibilite").addClass('hiddenStructure');

	$(".accessibilite a").focus(function(){
		$("../../..", this).removeClass('hiddenStructure');
	});

	$(".accessibilite a").blur(function(){
		$("../../..", this).addClass('hiddenStructure');
	});
		
	$(".input_text").focus(function(){
		$(this).attr('value', '');
	});
	$(".input_text").blur(function(){
		//if ($(this).attr('value')!='')
		//	$(this).attr('value', 'Votre recherche');
	});
	

	$(".navigation ul").addClass('hiddenStructure');
	$(".navigation").hover(function() {
		$("ul", this).removeClass('hiddenStructure');
		return false;
	}, function() {
		$("ul", this).addClass('hiddenStructure');
		return false;
	});
	
	$(".select ul ul").addClass('hiddenStructure');
	$(".select ul li").hover(function() {
		$("ul", this).removeClass('hiddenStructure');
		return false;
	}, function() {
		$("ul", this).addClass('hiddenStructure');
		return false;
	});
	

	//agrandir les biographies
	$("#fiche_oeuvre .bio_big").click(function(){
		$("#fiche_oeuvre").addClass('big');
	});
	$("#fiche_oeuvre .bio_small").click(function(){
		$("#fiche_oeuvre").removeClass('big');
	});
	
	
	//foldable
	$(".foldable .title").click(function(){
		$(".. foldable", this).toggleClass('view');
	});
	
});





