/* ===================================== 
Credits: Stu Nicholls - stunicholls.com 
======================================== */
 

/* <![CDATA[ */
$(document).ready(function(){
/* CONFIG */
/* set start (sY) and finish (fY) heights for the list items */
sY = 24;
fY = 375;
/* end CONFIG */

/* open first list item */
animate (fY)

$("#slide .top").click(function() {
	if (this.className.indexOf('clicked') == -1 ) {
		animate(sY)
		$('.clicked').removeClass('clicked');
		$(this).addClass('clicked');
		animate(fY)
	}
});

function animate(pY) {
$('.clicked').animate({"height": pY + "px"}, 500);
}

});
/* ]]> */
/* ========================================================================================= 
Original javascript Copyright (c) 2008 Stu Nicholls - stunicholls.com - all rights reserved.
============================================================================================ */
 

