<!DOCTYPE html>

<!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ -->
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if IE 7]>    <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
<!--[if IE 8]>    <html class="no-js lt-ie9" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
	<meta charset="utf-8">

	<!-- Set the viewport width to device width for mobile -->
	<meta name="viewport" content="width=device-width">

	<title>Register.com</title>
  
	<!-- Included CSS Files -->
	<!-- Combine and Compress These CSS Files -->
	<link rel="stylesheet" href="stylesheets/grid.css">
	<link rel="stylesheet" href="stylesheets/style.css">
</head>
<body class="1sc">

	<!-- container -->
	<div class="container">

		<div class="row header">
				<div class="four columns">
					<a href="http://www.register.com" border="0"><img border="0" src="images/logo.png" alt="Register.com" /></a>
				</div>
				<div class="eight columns">
					<span style="float:right;color:#666;font-size:16px;margin: 15px 20px 0 0;">Call us at <b>(877) 454-5212</b></span>
				</div>
			</div>
		
				<div class="row content">
			<div class="twelve columns">
			<center>
			<br />
			<br />
			<h1>Sorry! This site is no longer available.</h1>

<p>If you are the owner of this site, please call the number below and mention code WSN2240Z</p>

<p>Toll free within the U.S. &amp; Canada: (877) 454-5212 </p>

<p>Outside the U.S. &amp; Canada: (902) 749-5312</p>
</center>
			<br />
			</div>
		</div>
		
		</div>

	<!-- container -->
<br />
<br />

	


	<!-- Included JS Files -->
	<script src="javascripts/jquery.min.js"></script>	
	<script src="javascripts/jquery.colorbox-min.js"></script>
	<!-- Combine and Compress These JS Files -->
	<script src="javascripts/jquery.validate.js"></script>
<script>	 
/*
$( "#dialog" ).dialog({
      autoOpen: false,
      modal: true,
      height: 400,
      width: 550,
	  closeOnEscape: true,
	  position: "center"
      });
	*/    
$('#video').colorbox({

html:"<iframe width='480' height='360' src='http://www.youtube.com/embed/cu57wSPlUhU' frameborder='0' allowfullscreen></iframe>"

});

	  /*
 $( "#video" ).click(function(e) {
	  e.preventDefault();
      //$( "#dialog" ).dialog( "open" );
      });
*/

jQuery.validator.addMethod("phoneUS", function(phone_number, element) {
    phone_number = phone_number.replace(/\s+/g, ""); 
	return this.optional(element) || phone_number.length > 9 &&
		phone_number.match(/^(1-?)?(\([2-9]\d{2}\)|[2-9]\d{2})-?[2-9]\d{2}-?\d{4}$/);
}, "Please specify a valid phone number");

jQuery.validator.addMethod("valueNotEquals", function(value, element, arg){
  return arg != value;
 }, "This field is required.");


	
var image = $('<img src="images/spinner.gif" />'); // preload the spinner

$("#signupForm").validate({
		rules: {
			firstName: "required",
			lastName: "required",
			domainName: "required",
			phone: {
			  required: true,
			  phoneUS: true
			},
			email: {
				email: true
			}
		  } 
		});
	
	
$("#submit").click(function() {
  var isvalid = $("#signupForm").valid();
  if (isvalid == true){	
  
		 // combine fields into one
		 $('#description').val($('#primaryInterest2').val() + '/' + $('#primaryInterest').val()); 
	
		// replace submit button with spinner animation
		$(this).parent().append('<img style="clear:both;height:24px;width:24px;display:block;margin: 0 auto;" src="images/spinner.gif" />'); 
		$(this).hide(); 
		$("#signupForm").submit();

	}
	else {
		return false;
	}
});
</script>

</body>
</html>
