$(function() {
  $('a', '#social-media-links').hover(function() {
    $('#social-media-links p:last').html($(this).html());
  }, function () {
    $('#social-media-links p:last').html('&nbsp;');
  });
});

function ExpandMenu(object) {
	var o = $("#"+object);
	if (o.is(':visible'))
    o.slideUp('fast');
  else
    o.slideDown('fast');
}

function Register() {
	var email = document.getElementById('txtEMailAddress').value;
	var errorElement = document.getElementById('errorElement');
	var textbox = document.getElementById('txtEMailAddress');
	if (email=='') {
		errorElement.style.display='block';
		textbox.focus();
		textbox.style.backgroundColor='#FFCECE';
	}
	else {
		errorElement.style.display='none';
		textbox.style.backgroundColor='';
		window.location='/includes/register.asp?email=' + email;
	}
}
