function franchiseStory(status)
{
	if(status == "on")
	{
		document.getElementById("homeBottomContentFranchiseOfMonth").style.display = "none";
		document.getElementById("homeBottomContentFranchiseOfMonthStory").style.display = "inline";
	}
	else
	{
		document.getElementById("homeBottomContentFranchiseOfMonth").style.display = "inline";
		document.getElementById("homeBottomContentFranchiseOfMonthStory").style.display = "none";
	}
}