$(document).ready(function () {
	/*$('#first').focus();
	$(this).keyup(function (e) {
		if (e.keyCode == 13) {
			generate();
		}
	});*/
		});
function generate() {
	if($("input[name='name']").val().length > 1) {
		fi = $("input[name='name']").val().substring(0,1).toUpperCase();
		var men = ["The Hands Team","The Bicep","The Tricep","Danny Tan-ner",fi+"-Muscle",fi+"-Tan",fi+"-Train","Natural Light","Bones","The Body","The Blowout","The Prince of Paramus","DJ Douchebag","The Impact","The Sausage Party","Juice Box","Tan Jovi","The Tan-talizer","The Tan-gent","The Tan-ticle","Juice Springsteen","Orange Juice","The Condition","The Operation","The Deltoid",fi+"-Train",fi+"-Gel","Hard Hat"];
		var women = ["The Rack","The Back End","The Tight End","The Incident","The Good Time",fi+"-Scream",fi+"-Pow",fi+"-Pop",fi+"-Cat","The Marisa Tomei of the Bronx","The Paris Hilton of Trenton","Pookie","The Ashley Simpson of Cape May","The Princess of Paramus","Vibe Time","Snickers","Pooker","Sookie","Sunny","The Tan-trum","Tan-tric","Tanny","Last Call","The Opportunity","Hot Spot","The Position","The Appointment"];
		var sex = $("input:checked").val();
		if (sex == 1) {
			var i = Math.floor(Math.random() * women.length);
			var nick = women[i];
		} else {
			var i = Math.floor(Math.random() * men.length);
			var nick = men[i];
		}
		$("#answer").text("Your Jersey Shore nickname is: "+nick);
		$("#answer").fadeIn("fast");
		
	}
}

