/* <![CDATA[ */
$(document).ready(function(){
/* CONFIG */
/* set start (sY) and finish (ffy) heights for the list items */

sY = 24; /* height of li.sub */
ffy = 70; /* height of maximum sub lines * sub line height */
/* end CONFIG */

/* open first list item */
animate (ffy)

$("#slide1 .sub").click(function() {
	if (this.className.indexOf('clicked') != -1 ) {
		animate(sY)
		$(this)			.removeClass('clicked')
						
		}
		else {
		animate(sY)
		$('.clicked')	.removeClass('clicked')
						
		$(this)			.addClass('clicked');
		animate(ffy)
	}
});

function animate(pY) {
$('.clicked').animate({"height": pY + "px"}, 500);
}

$("#slide1 .sub")		.hover(function(){

},function(){
if (this.className.indexOf('clicked') == -1) {

}
});

});
/* ]]> */