/* drop down menu */
function dropdown(obj,stat) {
	idx=fDOM(obj);
	idx.style.visibility=(stat) ? "visible" : "hidden";
}
function fDOM(obj) {
	if (document.getElementById) return (document.getElementById(obj));
	else return (0);
}

$(document).ready(function(){
	$('#slide-container').innerfade({
		animationtype: 'fade', //fade or slide
		speed: 'slow', //animation speed: slow, normal or fast
		timeout: 4700, //milleseconds between fades
		type: 'sequence', //sequence, random
		containerheight: '230px'
	});
	$('input,textarea').keypress(function(){
 			this.form.elements.pv.value='verified';
 		});

	Date.format = 'mm/dd/yyyy';
	$('.date-pick').datePicker({
		showYearNavigation:false,
		clickInput:true,	//clicking input shows dateselect
		createButton:false 	//add a calendar icon next to input
	});
	$('.lightbox').lightBox()
});
