$(document).ready(function() {
	$("form").validate({
        invalidHandler: function(form, validator) {
          var errors = validator.numberOfInvalids();
          if (errors) {
            var message = errors == 1
              ? 'You missed 1 field. It has been highlighted'
              : 'You missed ' + errors + ' fields. They have been highlighted';
            alert(message);
          }
        }
     });
	$("#type").change(function() {
		if($('#type').val() == 'L') {
			$('#picutreid').val('0');
			$('#picturebox').hide();
			$('#guestlistbox').show();
		} else if($('#type').val() == 'P') {
			$('#eventid').val('0');
			$('#guestlistbox').hide();
			$('#picturebox').show();
		} else {
			$('#eventid').val('0');
			$('#picutreid').val('0');
			$('#guestlistbox').hide();
			$('#picturebox').hide();
		}
	});
});

