var xFoot = 1 // 1 = footer link on 0 = footer link off

//Game Card
var xus60dppgc = "$29.99" //60-Day Pre-Paid Game Card US
var xeu60dppgc = "Out of Stock" //60-Day Pre-Paid Game Card EU

//UDE Points
var xudeogre = "Out of Stock" //Carved Ogre Idol
var xudefireworks = "Out of Stock" //Perpetual Purple Firework
var xudefrost = "Out of Stock" //Tabard of Frost
var xudefury = "Out of Stock" //Tabard of Fury
var xudenature = "Out of Stock" //Tabard of Nature
var xudearcane = "Out of Stock" //Tabard of the Arcane
var xudebrilliance = "Out of Stock" //Tabard of Brilliance
var xudedefender = "Out of Stock" //Tabard of the Defender
var xudevoid = "Out of Stock" //Tabard of the Void
var xudepetbox = "Out of Stock" //Landro's Pet Box

//Blizzcon
var xblizzcon2005 = "Out of Stock" //Blue Murloc Egg
var xblizzcon2007 = "$349.99" //Murloc Costume
var xblizzcon2008 = "Out of Stock" //Big Blizzard Bear
var xblizzcon2009 = "$149.99" //Heavy Murloc Egg
var xblizzcon2010 = "$139.99" //Smoldering Murloc Egg
var xblizzcon2011 = "$99.99" //Murky's Little Soulstone 

//wwi
var xwwi2008 = "Out of Stock" //Tyrael

//Blizzard
var xblizgryphon = "Out of Stock" //Gryphon Hatchling
var xblizwindrider = "Out of Stock" //Wind Rider Cub

//Heroes of Azeroth
var xazeroth1 = "Out of Stock" //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 = "$74.99" //Banana Charm
var xportal3 = "$79.99" //Imp in a Ball

//Fires of Outland
var xoutland1 = "$18.99" //Goblin Gumbo Kettle
var xoutland2 = "$59.99" //Fishing Chair
var xoutland3 = "$649.99" //Reins of the Swift Spectral Tiger

//March of the Legion
var xlegion1 = "$5.99" //Paper Flying Machine Kit
var xlegion2 = "$89.99" //Rocket Chicken
var xlegion3 = "Out of Stock" //Dragon Kite

//Servants of the Betrayer
var xbetrayer1 = "$8.99" //Papa Hummel's Old-Fashioned Pet Biscuit
var xbetrayer2 = "$49.99" //Goblin Weather Machine - Prototype 01-B
var xbetrayer3 = "$224.99" //X-52 Nether-Rocket X-TREME

//The Hunt for Illidan
var xillidan1 = "$4.99" //Footsteps of Illidan
var xillidan2 = "Out of Stock" //D.I.S.C.O.
var xillidan3 = "$224.99" //Soul-Trader Beacon

//Drums of War
var xwar1 = "$1.39" //Party G.R.E.N.A.D.E.
var xwar2 = "Out of Stock" //The Flag of Ownership
var xwar3 = "$119.99" //Big Battle Bear

//Blood of Gladiators
var xgladiators1 = "$4.99" //Sandbox Tiger
var xgladiators2 = "$44.99" //Epic Purple Shirt
var xgladiators3 = "$84.99" //Foam Sword Rack

//Fields of Honor
var xhonor1 = "$3.49" //Patch of Cenarius
var xhonor2 = "$34.99" //Ogre Pinata
var xhonor3 = "$234.99" //El Pollo Grande

//Scourgewar
var xscourgewar1 = "$7.99" //Little Ivory Raptor Whistle / Little White Stallion Bridle
var xscourgewar2 = "$94.99" //Tuskarr Kite
var xscourgewar3 = "$199.99" //Spectral Tiger Cub

//Wrathgate
var xwrathgate1 = "$29.99" //Landro's Gift Box
var xwrathgate2 = "$64.99" //Statue Generator
var xwrathgate3 = "$319.99" //Blizzing Hippogryph

//Icecrown
var xicecrown1 = "$1.39" //Paint Bomb
var xicecrown2 = "$44.99" //Ethereal Portal
var xicecrown3 = "$239.99" //Wooly White Rhino

//Worldbreaker
var xworldbreaker1 = "$6.99" //Landro's Lil' XT
var xworldbreaker2 = "$19.99" //Grim Campfire
var xworldbreaker3 = "$159.99" //Mottled Drake

//War of the Elements
var xelements1 = "$7.99" //Landro's Lichling
var xelements2 = "$19.99" //War Party Hitching Post
var xelements3 = "$149.99" //Savage Raptor

//Twilight of the Dragons
var xdragons1 = "$7.99" //Nightsaber Cub
var xdragons2 = "$24.99" //Fool’s Gold
var xdragons3 = "Out of Stock" //Amani Dragonhawk

//Twilight of the Dragons
var xtides1 = "$9.99" //Purple Puffer
var xtides2 = "$24.99" //Throwing Startfish
var xtides3 = "$139.99" //Swift Shorestrider

//--CODE--

//Game Card
function priceus60dppgc() {
	if (xFoot == 1) {
		xDisp = "" + xus60dppgc + "";
	}
		document.write(xDisp)
}
function priceeu60dppgc() {
	if (xFoot == 1) {
		xDisp = "" + xeu60dppgc + "";
	}
		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)
}
function priceblizzcon2010() {
	if (xFoot == 1) {
		xDisp = "" + xblizzcon2010 + "";
	}
		document.write(xDisp)
}
function priceblizzcon2011() {
	if (xFoot == 1) {
		xDisp = "" + xblizzcon2011 + "";
	}
		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)
}

//Icecrown
function priceicecrown1() {
	if (xFoot == 1) {
		xDisp = "" + xicecrown1 + "";
	}
		document.write(xDisp)
}
function priceicecrown2() {
	if (xFoot == 1) {
		xDisp = "" + xicecrown2 + "";
	}
		document.write(xDisp)
}
function priceicecrown3() {
	if (xFoot == 1) {
		xDisp = "" + xicecrown3 + "";
	}
		document.write(xDisp)
}

//Worldbreaker
function priceworldbreaker1() {
	if (xFoot == 1) {
		xDisp = "" + xworldbreaker1 + "";
	}
		document.write(xDisp)
}
function priceworldbreaker2() {
	if (xFoot == 1) {
		xDisp = "" + xworldbreaker2 + "";
	}
		document.write(xDisp)
}
function priceworldbreaker3() {
	if (xFoot == 1) {
		xDisp = "" + xworldbreaker3 + "";
	}
		document.write(xDisp)
}

//War of the Elements
function priceelements1() {
	if (xFoot == 1) {
		xDisp = "" + xelements1 + "";
	}
		document.write(xDisp)
}
function priceelements2() {
	if (xFoot == 1) {
		xDisp = "" + xelements2 + "";
	}
		document.write(xDisp)
}
function priceelements3() {
	if (xFoot == 1) {
		xDisp = "" + xelements3 + "";
	}
		document.write(xDisp)
}

//Twilight of the Dragons
function pricedragons1() {
	if (xFoot == 1) {
		xDisp = "" + xdragons1 + "";
	}
		document.write(xDisp)
}
function pricedragons2() {
	if (xFoot == 1) {
		xDisp = "" + xdragons2 + "";
	}
		document.write(xDisp)
}
function pricedragons3() {
	if (xFoot == 1) {
		xDisp = "" + xdragons3 + "";
	}
		document.write(xDisp)
}

//Throne of Tides
function pricetides1() {
	if (xFoot == 1) {
		xDisp = "" + xtides1 + "";
	}
		document.write(xDisp)
}
function pricetides2() {
	if (xFoot == 1) {
		xDisp = "" + xtides2 + "";
	}
		document.write(xDisp)
}
function pricetides3() {
	if (xFoot == 1) {
		xDisp = "" + xtides3 + "";
	}
		document.write(xDisp)
}
