/* ================================================================ 
This copyright notice must be untouched at all times.
Copyright (c) 2008 Stu Nicholls - stunicholls.com - all rights reserved.
=================================================================== */
/* <![CDATA[ */
$(document).ready(function(){
/* CONFIG */
/* set start (sY) and finish (fY) heights for the list items */

sY = 24; /* height of li.sub */
fY = 150; /* height of maximum sub lines * sub line height */
/* end CONFIG */

/* open first list item */
animate(fY)

$("#slide .sub").hover(function() {
	if (this.className.indexOf('clicked') != -1 ) {
		animate(sY)
		$(this)			.removeClass('clicked')
						.css("background", "url(./images/over.gif) no-repeat 0px 12px")
						.css("color", "#ee3a42");
		}
		else {
		animate(sY)
		$('.clicked')	.removeClass('clicked')
						.css("background", "url(./images/over.gif) no-repeat 0px 12px")
						.css("color", "#ee3a42");
		$(this)			.addClass('clicked');
		animate(fY)
	}
});

function animate(pY) {
$('.clicked').animate({"height": pY + "px"}, 300);
}


});
/* ]]> */