$(document).ready(function(){
	if ($.cookie('ultbar') != "closed") {
	  $('#ultbar').animate({
		  bottom: '0'
	  }, 1000);
	}
  $('#ultbar a').click(function () {
	  if ($('#ultbar').css('bottom') == '-108px') {
		  $('#ultbar').animate({
			  bottom: '0'
		  }, 'slow');
	  } else {
		  $('#ultbar').animate({
			  bottom: '-108px'
		  }, 'slow');
	  }
	  return false;
  });
  $('#ult-close-btn a').click(function () {
	  $.cookie('ultbar', 'closed', {expires: 90, domain: 'churchleaderinsights.com'});
  });
	$('#ultbar form').validate({
		messages: {
			Contact0FirstName: { 
				required: "*"
			},
			Contact0Email: "*",
			Contact0JobTitle: "*"
		}  
	});
});

