function doBMI(){
		var total_inches;
		var bmi; 
		var pounds = parseInt($('input#pounds').val());
		var feet = parseInt($('input#feet').val());
		var inches = parseInt($('input#inches').val());
		total_inches = (feet*12) + inches;
		bmi = ( pounds * 703) / (total_inches * total_inches);
		$('.bmi_result').html(bmi.toFixed(1));
		return false;
	}

$(document).ready(function() {
						   
   
   /*$('#splash').cycle({
	timeout	: 8000
   	,delay	: 1000
   });*/

	// =========================================
	// Make external links open in a new window 
	// =========================================
	
	$('a[href^="http://"]').not('[href*="bariatrics.corporate3design.com"]')
	.attr({target: "_blank", title: "Opens in a new window"})
		
	$('a#compute').click(function (){
		return doBMI();
	});

});
