function getBabyGender()
{row=$("#mAge").val();col=$("#mMonth").val();$("#chCal td").css("background-color","white");selected=$("#chCal tr:eq("+row+") td:eq("+col+")");selected.css("background-color","yellow");$("#gender").text($("#chCal tr:eq("+row+") td:eq("+col+") img").attr("title"));}
function filterGender(AGender)
{if(AGender==2)
{$("#chCal img").show();$("#chCal img[gender='male']").hide();}
else
{$("#chCal img").show();$("#chCal img[gender='female']").hide();}}
function resetAll()
{$("#chCal td").css("background-color","white");$("#chCal img").show();$("#gender").text("");}
