var xFoot = 1 // 1 = footer link on 0 = footer link off

//Game Card
var x60dppgc = "$29.99" //60-Day Pre-Paid Game Card

//UDE Points
var xudeogre = "Out of Stock" //Carved Ogre Idol
var xudefireworks = "$29.99" //Perpetual Purple Firework
var xudefrost = "$29.99" //Tabard of Frost
var xudefury = "$19.99" //Tabard of Fury
var xudenature = "$19.99" //Tabard of Nature
var xudearcane = "$14.99" //Tabard of the Arcane
var xudebrilliance = "$39.99" //Tabard of Brilliance
var xudedefender = "$24.99" //Tabard of the Defender
var xudevoid = "$39.99" //Tabard of the Void
var xudepetbox = "Out of Stock" //Landro's Pet Box

//Blizzcon
var xblizzcon2005 = "Out of Stock" //Blue Murloc Egg
var xblizzcon2007 = "$299.99" //Murloc Costume
var xblizzcon2008 = "$274.99" //Big Blizzard Bear
var xblizzcon2009 = "$109.99" //Heavy Murloc Egg

//wwi
var xwwi2008 = "$749.99" //Tyrael

//Blizzard
var xblizgryphon = "Coming Soon" //Gryphon Hatchling
var xblizwindrider = "Coming Soon" //Wind Rider Cub

//Heroes of Azeroth
var xazeroth1 = "$24.99" //Tabard of Flame
var xazeroth2 = "$64.99" //Hippogryph Hatchling
var xazeroth3 = "$149.99" //Riding Turtle

//Through the Dark Portal
var xportal1 = "$14.99" //Picnic Basket
var xportal2 = "$69.99" //Banana Charm
var xportal3 = "$59.99" //Imp in a Ball

//Fires of Outland
var xoutland1 = "$18.99" //Goblin Gumbo Kettle
var xoutland2 = "Out of Stock" //Fishing Chair
var xoutland3 = "Out of Stock" //Reins of the Swift Spectral Tiger

//March of the Legion
var xlegion1 = "$11.99" //Paper Flying Machine Kit
var xlegion2 = "$89.99" //Rocket Chicken
var xlegion3 = "$139.99" //Dragon Kite

//Servants of the Betrayer
var xbetrayer1 = "$9.99" //Papa Hummel's Old-Fashioned Pet Biscuit
var xbetrayer2 = "$54.99" //Goblin Weather Machine - Prototype 01-B
var xbetrayer3 = "$324.99" //X-52 Nether-Rocket X-TREME

//The Hunt for Illidan
var xillidan1 = "$3.99" //Footsteps of Illidan
var xillidan2 = "$44.99" //D.I.S.C.O.
var xillidan3 = "$259.99" //Soul-Trader Beacon

//Drums of War
var xwar1 = "$1.49" //Party G.R.E.N.A.D.E.
var xwar2 = "$44.99" //The Flag of Ownership
var xwar3 = "$129.99" //Big Battle Bear

//Blood of Gladiators
var xgladiators1 = "$3.99" //Sandbox Tiger
var xgladiators2 = "$39.99" //Epic Purple Shirt
var xgladiators3 = "$89.99" //Foam Sword Rack

//Fields of Honor
var xhonor1 = "$3.99" //Patch of Cenarius
var xhonor2 = "$34.99" //Ogre Pinata
var xhonor3 = "$259.99" //El Pollo Grande

//Scourgewar
var xscourgewar1 = "$8.99" //Little Ivory Raptor Whistle / Little White Stallion Bridle
var xscourgewar2 = "Out of Stock" //Tuskarr Kite
var xscourgewar3 = "Out of Stock" //Spectral Tiger Cub

//Wrathgate
var xwrathgate1 = "$17.99" //Landro's Gift Box
var xwrathgate2 = "$44.99" //Statue Generator
var xwrathgate3 = "$224.99" //Blizzing Hippogryph

//--CODE--

//Game Card
function price60dppgc() {
	if (xFoot == 1) {
		xDisp = "" + x60dppgc + "";
	}
		document.write(xDisp)
}

//UDE Points
function priceudeogre() {
	if (xFoot == 1) {
		xDisp = "" + xudeogre + "";
	}
		document.write(xDisp)
}
function priceudefireworks() {
	if (xFoot == 1) {
		xDisp = "" + xudefireworks + "";
	}
		document.write(xDisp)
}
function priceudefrost() {
	if (xFoot == 1) {
		xDisp = "" + xudefrost + "";
	}
		document.write(xDisp)
}
function priceudefury() {
	if (xFoot == 1) {
		xDisp = "" + xudefury + "";
	}
		document.write(xDisp)
}
function priceudenature() {
	if (xFoot == 1) {
		xDisp = "" + xudenature + "";
	}
		document.write(xDisp)
}
function priceudearcane() {
	if (xFoot == 1) {
		xDisp = "" + xudearcane + "";
	}
		document.write(xDisp)
}
function priceudebrilliance() {
	if (xFoot == 1) {
		xDisp = "" + xudebrilliance + "";
	}
		document.write(xDisp)
}
function priceudedefender() {
	if (xFoot == 1) {
		xDisp = "" + xudedefender + "";
	}
		document.write(xDisp)
}
function priceudevoid() {
	if (xFoot == 1) {
		xDisp = "" + xudevoid + "";
	}
		document.write(xDisp)
}
function priceudepetbox() {
	if (xFoot == 1) {
		xDisp = "" + xudepetbox + "";
	}
		document.write(xDisp)
}

//Blizzcon
function priceblizzcon2005() {
	if (xFoot == 1) {
		xDisp = "" + xblizzcon2005 + "";
	}
		document.write(xDisp)
}
function priceblizzcon2007() {
	if (xFoot == 1) {
		xDisp = "" + xblizzcon2007 + "";
	}
		document.write(xDisp)
}
function priceblizzcon2008() {
	if (xFoot == 1) {
		xDisp = "" + xblizzcon2008 + "";
	}
		document.write(xDisp)
}
function priceblizzcon2009() {
	if (xFoot == 1) {
		xDisp = "" + xblizzcon2009 + "";
	}
		document.write(xDisp)
}

//WWI
function pricewwi2008() {
	if (xFoot == 1) {
		xDisp = "" + xwwi2008 + "";
	}
		document.write(xDisp)
}

//Blizzard
function priceblizgryphon() {
	if (xFoot == 1) {
		xDisp = "" + xblizgryphon + "";
	}
		document.write(xDisp)
}
function priceblizwindrider() {
	if (xFoot == 1) {
		xDisp = "" + xblizwindrider + "";
	}
		document.write(xDisp)
}

//Heroes of Azeroth
function priceazeroth1() {
	if (xFoot == 1) {
		xDisp = "" + xazeroth1 + "";
	}
		document.write(xDisp)
}
function priceazeroth2() {
	if (xFoot == 1) {
		xDisp = "" + xazeroth2 + "";
	}
		document.write(xDisp)
}
function priceazeroth3() {
	if (xFoot == 1) {
		xDisp = "" + xazeroth3 + "";
	}
		document.write(xDisp)
}

//Through the Dark Portal
function priceportal1() {
	if (xFoot == 1) {
		xDisp = "" + xportal1 + "";
	}
		document.write(xDisp)
}
function priceportal2() {
	if (xFoot == 1) {
		xDisp = "" + xportal2 + "";
	}
		document.write(xDisp)
}
function priceportal3() {
	if (xFoot == 1) {
		xDisp = "" + xportal3 + "";
	}
		document.write(xDisp)
}

//Fires of Outland
function priceoutland1() {
	if (xFoot == 1) {
		xDisp = "" + xoutland1 + "";
	}
		document.write(xDisp)
}
function priceoutland2() {
	if (xFoot == 1) {
		xDisp = "" + xoutland2 + "";
	}
		document.write(xDisp)
}
function priceoutland3() {
	if (xFoot == 1) {
		xDisp = "" + xoutland3 + "";
	}
		document.write(xDisp)
}

//March of the Legion
function pricelegion1() {
	if (xFoot == 1) {
		xDisp = "" + xlegion1 + "";
	}
		document.write(xDisp)
}
function pricelegion2() {
	if (xFoot == 1) {
		xDisp = "" + xlegion2 + "";
	}
		document.write(xDisp)
}
function pricelegion3() {
	if (xFoot == 1) {
		xDisp = "" + xlegion3 + "";
	}
		document.write(xDisp)
}

//Servants of the Betrayer
function pricebetrayer1() {
	if (xFoot == 1) {
		xDisp = "" + xbetrayer1 + "";
	}
		document.write(xDisp)
}
function pricebetrayer2() {
	if (xFoot == 1) {
		xDisp = "" + xbetrayer2 + "";
	}
		document.write(xDisp)
}
function pricebetrayer3() {
	if (xFoot == 1) {
		xDisp = "" + xbetrayer3 + "";
	}
		document.write(xDisp)
}

//The Hunt for Illidan
function priceillidan1() {
	if (xFoot == 1) {
		xDisp = "" + xillidan1 + "";
	}
		document.write(xDisp)
}
function priceillidan2() {
	if (xFoot == 1) {
		xDisp = "" + xillidan2 + "";
	}
		document.write(xDisp)
}
function priceillidan3() {
	if (xFoot == 1) {
		xDisp = "" + xillidan3 + "";
	}
		document.write(xDisp)
}

//Drums of War
function pricewar1() {
	if (xFoot == 1) {
		xDisp = "" + xwar1 + "";
	}
		document.write(xDisp)
}
function pricewar2() {
	if (xFoot == 1) {
		xDisp = "" + xwar2 + "";
	}
		document.write(xDisp)
}
function pricewar3() {
	if (xFoot == 1) {
		xDisp = "" + xwar3 + "";
	}
		document.write(xDisp)
}

//Blood of Gladiators
function pricegladiators1() {
	if (xFoot == 1) {
		xDisp = "" + xgladiators1 + "";
	}
		document.write(xDisp)
}
function pricegladiators2() {
	if (xFoot == 1) {
		xDisp = "" + xgladiators2 + "";
	}
		document.write(xDisp)
}
function pricegladiators3() {
	if (xFoot == 1) {
		xDisp = "" + xgladiators3 + "";
	}
		document.write(xDisp)
}

//Fields of Honor
function pricehonor1() {
	if (xFoot == 1) {
		xDisp = "" + xhonor1 + "";
	}
		document.write(xDisp)
}
function pricehonor2() {
	if (xFoot == 1) {
		xDisp = "" + xhonor2 + "";
	}
		document.write(xDisp)
}
function pricehonor3() {
	if (xFoot == 1) {
		xDisp = "" + xhonor3 + "";
	}
		document.write(xDisp)
}

//Scourgewar
function pricescourgewar1() {
	if (xFoot == 1) {
		xDisp = "" + xscourgewar1 + "";
	}
		document.write(xDisp)
}
function pricescourgewar2() {
	if (xFoot == 1) {
		xDisp = "" + xscourgewar2 + "";
	}
		document.write(xDisp)
}
function pricescourgewar3() {
	if (xFoot == 1) {
		xDisp = "" + xscourgewar3 + "";
	}
		document.write(xDisp)
}

//Wrathgate
function pricewrathgate1() {
	if (xFoot == 1) {
		xDisp = "" + xwrathgate1 + "";
	}
		document.write(xDisp)
}
function pricewrathgate2() {
	if (xFoot == 1) {
		xDisp = "" + xwrathgate2 + "";
	}
		document.write(xDisp)
}
function pricewrathgate3() {
	if (xFoot == 1) {
		xDisp = "" + xwrathgate3 + "";
	}
		document.write(xDisp)
}