function chkYouAre(str)
{
	if(str>2)
	{
	$(function() {$("#famgro").show("slow");});
	}
	else
	{
	$(function() {$("#famgro").hide("slow");});
	}
}

function chkQty(adults, children)
{
	total = parseFloat(adults) + parseFloat(children);
	if(total>5)
	{
	$(function() {$("#plusfive").show("slow");});
	}
	else
	{
	$(function() {$("#plusfive").hide("slow");});
	}
}

function chkRooms(entire)
{
	if(entire.checked)
	{
	$(function() {$("#roomlist").hide("slow");});
	}
	else
	{
	$(function() {$("#roomlist").show("slow");});
	}
}