jQuery(document).ready(function($) {
	$("#tabs").tabs();
	$(".about-tabs").tabs();

	
	// BMI CALCULATOR		 
	$("#bmi-calc input[type=submit]").click(function() {
		var heightft = $("#height-ft").val(),
	 		 heightin = $("#height-in").val(),
	 		 totalheight = (heightft*12)+parseInt(heightin),
	 		 weight   = $("#weight").val(),
	 		 total;
	 		 
	 		 
	 		 total = (weight * 703) / (totalheight * totalheight);
	 		 total = Math.round(total*10)/10;
	 		 $("#bmi").val(total);
	 		 return false;
	 });

});

