// JavaScript Document

$(document).ready(function(e) {
    $("#client_button").click(function(e) {
		document.location.href="http://stacfitness.com/clients/";
    });
		
// HEART RATE CALCULATOR	
	
	$("#calc-maxheart").click(function(e) {
        var age = $("#age").val();
		var gender = $("#gender").val();
		if(gender == "M") {
			var calc = (214-(age*.8)).toFixed(0);
			$("#result").text(calc);
		} else if(gender == "F") {
			var calc = (209-(age*.7)).toFixed(0);			
			$("#result").text(calc);
		} else {
			var calc = "NA";
			$("#result").text(calc);
		}
    });	
	
	$("#calc-bmi").click(function(e) {
        var weight = $("#myweight").val();
		var height = $("#myheight").val();
		var bmi = ((weight/(height*height))*703).toFixed(1);
		$("#result").text(bmi);
    });
	
	
	
});
