/* ================================================================ 

This copyright notice must be untouched at all times.

Copyright (c) 2008 Stu Nicholls - stunicholls.com - all rights reserved.

=================================================================== */

/* <![CDATA[ */

jQuery(document).ready(function($){

/* CONFIG */

/* set start (sY) and finish (fY) heights for the list items */

 

sY = 35; /* height of li.sub */

fY = 110; /* height of maximum sub lines * sub line height */

/* end CONFIG */

 

/* open first list item */

/*animate (fY)*/

remain (fY)

 

$("#slide .sub").click(function() {

	if (this.className.indexOf('clicked') != -1 ) {

		animate(sY)

		$(this)			.removeClass('clicked')

						.css("background", "url(arrows/out.gif) no-repeat 5px 8px")

		}

		else {

		animate(sY)

		$('.clicked')	.removeClass('clicked')

						.css("background", "url(arrows/out.gif) no-repeat 5px 8px")

		$(this)			.addClass('clicked');

		animate(fY)

	}

});

 

function animate(pY) {

$('.clicked').animate({"height": pY + "px"}, 500);

}

function remain(pY) {

$('.clicked').css("height", pY + "px");

}

 

$("#slide .sub")		.hover(function(){

$(this)					.css("background", "url(arrows/down.gif) no-repeat 5px 8px")

},function(){

if (this.className.indexOf('clicked') == -1) {

$(this)					.css("background", "url(arrows/out.gif) no-repeat 5px 8px")

}

});

 

});

/* ]]> */