   jQuery().ready(function(){
		
		
		// first simple Accordion with special markup
		jQuery('#list').Accordion({
			header: 'div.title',
			active: false,
			alwaysOpen: false,
			animated: false
		});
		
		$("#list div.title").hover(
  			function(){ $(this).addClass("hover"); },
  			function(){ $(this).removeClass("hover"); }
		);
		
	});
