﻿/* ================================================================ 
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 = 38;
fY = 280;
/* end CONFIG */

/* open first list item */
animate (fY);

$("#slide .top").click(function() {
	if (this.className.indexOf('clicked') == -1 ) {
		animate(sY)
		$('.clicked').addClass('hideContent');
		$('.clicked').removeClass('clicked');
		$(this).addClass('clicked');
		$(this).removeClass('hideContent');
		animate(fY)
	}
});

function animate(pY) {
$('.clicked').animate({"height": pY + "px"}, 500);
}

});
/* ]]> */

function SetDateToBox(id)
{
    var cal18 = new CalendarPopup("testdiv1");
    cal18.setCssPrefix("TEST");
    cal18.select(document.getElementById(id),'anchor18','MM/dd/yyyy'); 
    return false;
}