function positionFooter() {
	var nh=$('#nav').height(), ch=$('#content').height(), hh=$('#header').height();
	var dif=(nh>=ch ? nh-ch : 0);
	$('#footer').css({top: dif +  'px'});
	//alert(dif);
}

function increaseKids() {
	var no=$('#kids_no').val();
	no++;
	$('#kids_no').val(no);
	//alert(no);
	
	return no;
}
