$(document).ready(function(){
	//displayOther();		
	$("#checkbox_other").click(function() {
		displayOther();
	});
	$("#contactUs").click(function() {
		contactUs();
		return false;
	});
	/*
	$("#contact_form, #join_form").validate({
		submitHandler: function(form) {
			form.submit();
		}
	});
	$("input.error").live('click', function() {
		$(this).removeClass("error");
	});
	*/
});

// displayOther	
function displayOther() {
	if ($("#checkbox_other").is(":checked")) {
		$("#otherService").css("display", "inline");
		$("#otherService").focus();
	} else {     
		$("#otherService").hide();
	}	
}

// contactUs
function contactUs() {
	day = new Date();
 	URL="http://www.alloymarketing.com/contact/index.html";
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=418,height=600');");
}

