function hover(submenu)
{
	var menu = document.getElementById(submenu);
	
	if(menu.style.display == "none")
		menu.style.display = "block";
	else
		menu.style.display = "none";
}

function InsertName(dog)
{
	var name = new String(dog);
	
	if(name == 'blade')	document.write("AKC CH \/ ASCA CH \/ UKC BIS CH CoolmoorPoinset ShardsofNarsil RN, STDcsd DNA-VP");
	if(name == 'vivi')		document.write("Coolmoor Truegrit Molto Vivace ATDd OTDcs OFTDs JS-N GS-N DNA-VP (ASCA major pointed)");
	if(name == 'turner')	document.write("ASCA CH Coolmoor Trugrit Turn On a Dime RN, STDs, TN-N, CGC, DNA-VP");
	if(name == 'candy')	document.write("ASCA CH Sazbrat-Nitani Confectionary DNA-CP");
	if(name == 'scandal')	document.write("HOF CH Gefion’s Stop The Presses TD RE CD CGC DNA-CP");
	if(name == 'cozy')		document.write("CH Coolmoor Hardrock In UR Dreams CD TD RA JS-N GS-N CGCDNA-CP ");
	if(name == 'smidge')	document.write("Vision’s I’m Movin’ On CGC OFTDs");
	if(name == 'duesey')	document.write("CoolmoorPoinsett What A Ride CGC DNA-VP AKC DNA");
	if(name == 'millie')		document.write("CH Winter Haven’s The First Lady RV-N CGC");
	if(name == 'moxie')	document.write("CH Winter Haven’s Tsunami Mox RV-O CGC");
	if(name == 'noble')	document.write("WTCH A-CH Coolmoor True Grit Noble OFTDs RTDcs DNA-VP");
	if(name == 'wrangler')	document.write("A-CH CoolmoorRista Tight Fitn Jeans");
	if(name == 'tony')		document.write("A-CH Coolmoor Trugrit Y Not CDX RM CGC");
	if(name == 'aura')		document.write("CH Coolmoor Sazbrat Flashback");
	if(name == 'nava')		document.write("Ristas An American Girl of Coolmoor (6 AKC Points)");
	if(name == 'cirrus')	document.write("CoolmoorPoinsett On Cloud Nine RS-N GS-N JS-N RN (ASCA pointed)");
	if(name == 'huck')		document.write("SazbratCoolmoor Red Huckleberry DNA-VP (major pointed both AKC and ASCA)");
	if(name == 'mini')		document.write("Drôle d’Oiseau Hirondelle");
	if(name == 'stetson')	document.write("CH Rista I Got My Stetson of Coolmoor");
	if(name == 'sissy')		document.write("Sissy CGC ARPH #11815");
	if(name == 'click')		document.write("AKC\/ASCA CH Poinsett's Lock-N-Load DNA-VP");
	
	//OTHERs
	if(name == 'ecko')		document.write("ASCA CH Aileana's Dizzy Delight DNA-CP");
	if(name == 'cela')		document.write("AKC CH Rainyday's Just Like Heaven (ASCA major pointed)");
	if(name == 'james')	document.write("AKC GCH\/Premier ASCA CH SAZBRAT BADLANDS DNA-VP");
	if(name == 'tornado')	document.write("Vesper Coolmoor Tornado DNA-VP");
}

function InsertFooter()
{
	document.write("Amy Burnette&nbsp;&nbsp;|&nbsp;&nbsp;Atlanta, GA&nbsp;&nbsp;|&nbsp;&nbsp;678-596-5922&nbsp;&nbsp;|&nbsp;&nbsp;<a href=\"mailto:amy@reallycooldogs.com\">amy@reallycooldogs.com<\/a>");
}

function InsertCompanionPages(currentpage)
{
var page = new String(currentpage);

document.write("<div class=\"pages\">");


//------------------------------------------------------------PAGE 1
if(page == "page1")
	document.write("Page 1");
else
	document.write("<a href=\"bred_by_companion.htm\">Page 1<\/a>");
	
//------------------------------------------------------------PAGE 2	
document.write("&nbsp;&nbsp;|&nbsp;&nbsp");
if(page == "page2")
	document.write("Page 2");
else
	document.write("<a href=\"bred_by_companion2.htm\">Page 2<\/a>");

	
document.write("<\/div>");
}

