﻿$(function() {

  $('#SpeakerList p').expander();
  $('#SeminarList p').expander();
  $('#NewsList p').expander();
  
  var signupForm = $("#SignupForm");
  var v = signupForm.validate();
  
  $('input[placeholder]').each(function() {
		if($(this).val() === '') {
			$(this).val($(this).attr('placeholder'));
		}

		$(this).focus(function() {
			if($(this).val() === $(this).attr('placeholder')) {
				$(this).val('').addClass('focused');
			}
		});
    
    $(this).siblings('label').hide();
	});
});