// active
shop_on = new Image();
shop_on.src = "/Content/reelimages/nav/shop2_at.gif";
categories_on = new Image();
categories_on.src = "/Content/reelimages/nav/categories_at.gif";
intheaters_on = new Image();
intheaters_on.src = "/Content/reelimages/nav/intheaters2_at.gif";
features_on = new Image();
features_on.src = "/Content/reelimages/nav/features2_at.gif";
specials_on = new Image();
specials_on.src = "/Content/reelimages/nav/specials_at.gif";
dvdreviews_on = new Image();
dvdreviews_on.src = "/Content/reelimages/nav/dvdreviews2_at.gif";

// inactive
shop_off = new Image();
shop_off.src = "/Content/reelimages/nav/shop2.gif";
categories_off = new Image();
categories_off.src = "/Content/reelimages/nav/categories.gif";
intheaters_off = new Image();
intheaters_off.src = "/Content/reelimages/nav/intheaters2.gif";
features_off = new Image();
features_off.src = "/Content/reelimages/nav/features2.gif";
specials_off = new Image();
specials_off.src = "/Content/reelimages/nav/specials.gif";
dvdreviews_off = new Image();
dvdreviews_off.src = "/Content/reelimages/nav/dvdreviews2.gif";

function imgOn(imgName) 
{
	if (document.images) 
	{
		document[imgName].src = eval(imgName + "_on.src");
     }
}	 
function imgOff(imgName) 
{
	if (document.images) 
	{
     	document[imgName].src = eval(imgName + "_off.src");
	}
}