$(document).ready(function(){

	$('.manche').fadeTo('fast', '0.3');

	$('.mancheActive').fadeTo('fast', '1.0');

	$('.manche').hover(function(){
		$(this).fadeTo('fast', '1.0');	
	},function(){
		$(this).fadeTo('fast', '0.3');	
	});
	 
	var defaults = {
		directory: 'turn',      // The directory we're in
		side: 'right',           // change me to "right" if you want rightness
		maxHeight: 400,         // The maximum height. Duh.
		startingWidth: 150,     // The height and width 
		startingHeight: 150,    // with which to start (these should probably be camelCase, d'oh.)
		autoCurl: true         // If this is set to true, the fold will curl/uncurl on mouseover/mouseout.
	};
	$( '#target' ).fold(defaults);

});
