var boxes = new Array('/images/army.jpg','/images/werewolf.jpg','/images/shaun.jpg','/images/van.jpg','/images/john.jpg','/images/wes.jpg','/images/phantasm.jpg');
var boxtext = new Array('Army of Darkness Screwhead Edition','An American Werewolf in London','Shaun of the Dead Gift Set and Blu-ray','Van Helsing<br>Blu-ray','John Carpenter<br>Master of Fear','The Wes Craven Horror Collection','Phantasm II');
var boxlinks = new Array('http://www.amazon.com/Army-Darkness-Screwhead-Ian-Abercrombie/dp/B0024FADDI/ref=sr_1_1?ie=UTF8&s=dvd&qid=1254421136&sr=1-1','http://www.amazon.com/American-Werewolf-London-Special-Agutter/dp/B0024FADD8/ref=sr_1_2?ie=UTF8&s=dvd&qid=1251845471&sr=8-2','http://www.nbcuniversalstore.com/detail.php?p=5741','http://www.nbcuniversalstore.com/detail.php?p=106025','http://www.nbcuniversalstore.com/detail.php?p=106042','http://www.nbcuniversalstore.com/detail.php?p=106041','http://www.nbcuniversalstore.com/detail.php?p=106044');
var boxes_image_description = new Array('Army of Darkness Screwhead Edition','An American Werewolf in London','Shaun of the Dead Gift Set and Blu-ray','Van Helsing Blu-ray','The John Carpenter Horror Collection','The Wes Craven Horror Collection','Phantasm II');

if(IsThisBrowserIE6())
{
ieExtraSpace = +(boxes.length-2); //IE 6 has a crazy habit of slapping on extra pixels
increment = 130;
}
else
{
ieExtraSpace = 0;
increment = 128;
}


var dvdcontent ='<div class="prev"><img src="images/btn_arrow-videoscrollleft.gif"></div><div id="scroll_containerdvd" class="dvdcontainer"><div id="boxscroll">';



for (var inc=0;inc<boxes.length;inc++)
{

	dvdcontent+='<div class="scroll_item_dvd"><a href="'+boxlinks[inc]+'" target="_blank"><img border="0" src="'+boxes[inc]+'" alt="'+boxes_image_description[inc]+'"><BR>'+boxtext[inc]+'</a></div>';

}

dvdcontent+='</div></div><div class="next"><img src="images/btn_arrow-videoscrollright.gif"></div>';

document.write(dvdcontent);

//The below handles the scrollbar for the dvd scroller.
if($('#scroll_containerdvd .scroll_item_dvd').length < 8 ){
	$('.next').hide();
	$('.prev').hide();
}


$('.next').click(function () { 

	$('#scroll_containerdvd').scrollTo('+=128px', 1000,{axis:'x'} );
	    
});
	
$('.prev').click(function () { 
	
	$('#scroll_containerdvd').scrollTo('-=128px', 1000,{axis:'x'} );

});

$('#boxscroll').width(($('#boxscroll  .scroll_item_dvd').length * increment)+ieExtraSpace);


