/**
 * @author le chef
 */
$(document).ready(function(){
		
		// second simple accordion with special markup
		$('#menu').accordion({
			active: false,
			header: '.head',
			navigation: true,
			event: 'click',
			fillSpace: false,
			autoheight: false,
			animated: 'easeslide'
		});
		
		$("#extra").css("display","none"); 
		// Add onclick handler to checkbox w/id checkme
       $("#cfPres").click(function(){
       
        // If checked
        if ($("#cfPres").is(":checked"))
        {
            //show the hidden div
            $("#extra").show("fast");
        }
        else
        {     
            //otherwise, hide it
            $("#extra").hide("fast");
        }
      });
		
		
	});