//product set up



//Comment out the items that you dont need.
var products=""+
"Pirate Girl|pirategirl_hi|2534374302041802"+
"|Plank Walker|pirateguy_hi|2534374302041794"+
"|Nurse|nurse_hi|2534374302041807"+
"|Accident Prone Victim|victim_hi|2534374302041792"+
"|Law Enforcer|cop_hi|2534374302041808"+
"|Escapee|convict_hi|2534374302041793"+
"|Wonder Woman|wonderwoman_hi|2534374302041796"+
"|Wolverine|wolverine_hi|2534374302041789"+
"|Batgirl|batgirl_hi|2534374302041795"+
"|Teenage Mutant Ninja Turtle|ninjaturtle_hi|2534374302041790"+
"|Robin|robingirl_hi|2534374302041806"+
"|Transformer|transformer_hi|2534374302041791"+
"|Vampire Victim|vampire_victim_hi|2534374302041797"+
"|Slipknot Guy|icp_dude_hi|2534374302041785"+
"|Foxy School Girl|amine_school_girl_hi|2534374302041774"+
"|High School Vampire|edward_hi|2534374302041826"+
"|Pixie Vampire Girl|alicefromtwilight_hi|2534374302041827"+
"|Tea Party Host|madhatterguy_hi|2534374302041800"+
"|Queen of Hearts|queenofhearts_hi|2534374302041805"+
"|Reclusive Pop Star|michael_jackson_masked_hi|2534374302041771"+
"|Dapper Vampire|vampireguy_hi|2534374302041788"+
"|Miss Wonderland|aliceinwonderland_hi|2534374302041803"+
"|White Rabbit|whiterabbit_hi|2534374302041799"+
"|Tea Party Hostess|madhattergirl_hi|2534374302041804"+
"|Dark Fairy|dark_fairy_hi|2534374302041776"+
"|Beat It Pop Star|michael_jackson_thriller_hi|2534374302041779"+
"|Ghostbusters Guy|ghostbuster_hi|2534374302041798"+
"|Hell Raiser|devil_hi|2534374302041782"+
"|Rebel Yell Dude|rockerdude_hi|2534374302041780"+
"|Never Ending Radical Dude|nerd_hi|2534374302041781"+
"|Rorschach|roschac_hi|2534374302041784"+
"|French Maid|maid_hi|2534374302041777"+

"|Saloon Girl|saloon_girl_hi|2534374302041783"+
"|Mario|mario_hi|2534374302041786"+
"|Luigi|luigi_hi|2534374302041787"+

"|Gothic Dolly|gothiclolita_hi|2534374302041772"+
"|Super Mario Princess|princess_hi|2534374302041801"+



//"|Fallen Angel|dark_angel_hi|2534374302041773"+
//"|Dark Wonderland Girl|darkwonderland_hi|2534374302041775"+
//"|Kitty On The Prowl|dark_kitty_hi|2534374302041778"+






"";



//alert("change links from pbo to production.");

//replaces background with new image
document.body.style.backgroundImage = 'url(http://community.hottopic.com/images/testbg.jpg)';

var productUrl = "http://www.hottopic.com/hottopic/store/ProductCollections.jsp?FOLDER<>folder_id=";
var imageUrl = "http://img.hottopic.com/is/image/HotTopic/";
var imageSetting = "?$thumbnail_big$";
var productArray = products.split("|");
var productSize = productArray.length/3;
var halloweenWrite = "";
document.write('<div style="margin-left:-22px"><img src="http://community.hottopic.com/images/halloweenBanner.jpg"/></div><div id="halloweenHolder" style="margin-top:20px;"></div>');

for (var i=0;i<productSize;i++){
	
	var productTitle = productArray[i*3+0];
	var productImage = productArray[i*3+1];
	var productPathId = productArray[i*3+2];
	
	halloweenWrite =halloweenWrite+"<div style='float:left;padding-right:6px;height:260px; width:142px'>"+
	"<div><a href='"+productUrl+productPathId+"' title='"+productTitle+"'><img src='"+imageUrl+productImage+imageSetting+"' border='0' style='border:1px solid #000000'/></a></div>"+
	"<div align='center' style='margin-top:10px;'><a href='"+productUrl+productPathId+"' style='color:red; font-family:Arial, Helvetica, sans-serif;text-decoration:none;font-weight:bold'>"+productTitle+"</a></div>"+
	//end of main div
	"</div>";

}
document.getElementById('halloweenHolder').innerHTML=halloweenWrite+"<div style='clear:left'></div>";

