function form_validate(id, txt) {
	if ($(id).val().length==0) {
		retmsg=txt+" must be entered\n";
	} else {
		retmsg='';
	}
	return (retmsg);
}

$(document).ready(function(){
	$('#btnSubmit').click(function(){
		var msg='';
		msg+=form_validate('#LeadName', "Name");
		msg+=form_validate('#LeadPhone', "Phone");
		msg+=form_validate('#LeadEmail', "Email");
		msg+=form_validate('#LeadCity_fRBI', "City");
		msg+=form_validate('#LeadZipCodeRBI', "Zip");
		msg+=form_validate('#LeadComments', "Comments");
		if (msg=='') {
			$('#mg-sched-form').submit();
		} else {
			msg="Your request cannot be processed without the following information:\n"+msg;
			alert (msg);
			return false;
		}
	});
	
	$("#mg-sched-options-ind").click(function() {
		if ($('#mg-sched-options-ind:checked').val() !== undefined) {
			$('#mg-sched-options').show();
		} else {
			$('#mg-sched-options').hide();
		}
	});
	
	$("#LeadRequestedDate").datepicker();

        $("#news_scroll").vTicker({
                speed: 500,
                pause: 3000,
                showItems: 3,
                animation: 'fade',
                mousePause: true,
                height: 200,
                direction: 'up'
        });

});

