$(document).ready(function() {
	$(':image').focus(function() {
		$(':image').removeClass('button-up');
		$(':image').addClass('button-down');
	});
	$(':image').mouseout(function() {
		$(':image').removeClass('button-down');
		$(':image').addClass('button-up');
	});
});
$(function() {
  $('.error').hide();
  $(':text').css('backgroundColor', 'transparent');
  $(':text').focus(function(){
    $(this).css('background-color', '#FFDDAA');
  });
  $(':text').blur(function(){
    $(this).css("background-color","transparent");
  });

  $(".button").click(function() {		
    $('.error').hide();
		
	  var xid = $("input#xid").val();
	  var type = $('input#type').val();
	  var name = $("input#Contact0FirstName").val();
		if (name == "") {
      $("input#Contact0FirstName").show();
      $("input#Contact0FirstName").focus();
      return false;
    }
		var email = $("input#Contact0Email").val();
		if (email == "") {
      $("label#Contact0Email").show();
      $("input#Contact0Email").focus();
      return false;
    }
	});
});