function ResetPackageInfo(packageName)
{
	switch(packageName)
	{
		case "Intimate":
			SetIntimatePackage()
			break
		case "Charming":
			SetCharmingPackage()
			break
		case "Elegant":
			SetElegantPackage()
			break
		case "Deluxe":
			SetDeluxePackage()
			break
		case "Others":
			SetOthers()
			break
			
	}		
}

function SetIntimatePackage()
{
	document.getElementById("PackageTitle").innerHTML = "Intimate Package ($950)"
	
	document.getElementById("PackageDesc").innerHTML = 
	"This package is perfect for small, intimate weddings.  You receive enough "
	+ " to ensure your most cherished memories are captured for ever in photos, with out"
	+ " spending an arm and a leg!"
	
	document.getElementById("PackageAttributes").innerHTML =
	"Package Includes:<br /><ul><li>6 Hours of Photography Service</li><li>100 Photographs</li></ul>"
	
}

function SetCharmingPackage()
{
	document.getElementById("PackageTitle").innerHTML = "Charming Package ($1700)"
	
	document.getElementById("PackageDesc").innerHTML = 
	"For the small weddings that want just a little more!  This package is similar to the intimate package, but includes "
	+"additional photographs, and a hip photobook for you to share your cherished memories."
	
	document.getElementById("PackageAttributes").innerHTML =
	"Package Includes:<br /><ul><li>6 Hours of Photography Service<li>150 Photographs<li>20 page 6x8 photobook<BR>(Soft Cover)</li></ul>"
	
}

function SetElegantPackage()
{
	document.getElementById("PackageTitle").innerHTML = "Elegant Package ($2500)"
	
	document.getElementById("PackageDesc").innerHTML = 
	"Its your wedding, and you deserve to be pampered.  This package includes time enough to for photographing your wedding preparation, ceremony, and reception, "
	+"and includes a hard-cover photobook for sharing your memories with loved ones!"
	
	document.getElementById("PackageAttributes").innerHTML =
	"Package Includes:<br /><ul><li>8 Hours of Photography Service<li>200 Photographs<li>20 page 9x12 photobook<BR>(Linen Hard Cover)</li></ul>"
	
}

function SetDeluxePackage()
{
	document.getElementById("PackageTitle").innerHTML = "Deluxe Package ($3200)"
	
	document.getElementById("PackageDesc").innerHTML = 
	"For the bride and groom who truly want it all, this is our most luxurious package!  When it comes to your wedding "
	+ " you can never have enough, and this package will meet even the most demanding photography needs."
	
	
	document.getElementById("PackageAttributes").innerHTML =
	"Package Includes:<br /><ul><li>8 Hours of Photography Service<li>250 Photographs<li>20 print 8x10 album<br>(Professionally Bound and Matted)</li></ul>"
	
}

function SetOthers()
{
	document.getElementById("PackageTitle").innerHTML = "Other Services:"
	
	document.getElementById("PackageDesc").innerHTML = 
	"Its your wedding, get more from your package and customize our service to meet your needs!  Ensure you've got the albums and photography you need by enhancing our packages to your taste."
	
	document.getElementById("PackageAttributes").innerHTML =
	"<ul><li>20 Page Soft Cover Photobook ($250)"
	+"<li>20 Page Hard Cover Photobook ($300)"
	+"<li>Additional Photography Time ($150/hr)"
	+"<li>20 print 8x10 Album ($400)"
	+"<li>30 print 8x10 Album ($500)</ul>"
	
	
}
