function csc2Init() {
	$('#spotlightContainer2 .showMultiSlider-entries li').each(function(intIndex) {	
		// Place each item in a straight line inside
		// its container.
		$(this).css('width', '1px');
		$(this).css('position', 'absolute');
		$(this).css('top', '0px');
		$(this).css('left', '0px');

		// show the next link if there are more than 4 items.
		if (intIndex == 4) {
			$('#spotlightContainer2 .showMultiSlider-next').css('visibility', 'visible');
		}

		// Size this thing relative to the largest image in the set.
		var pic = $(this).find('img');
		pic.removeAttr("width");
		var picRealWidth = pic.width();



		// Find width of smallest Li
		var liWidth = 9999;
		var arrEls = $('#spotlightContainer2 .showMultiSlider-entries li').get();
		for (var i = 0; i < arrEls.length; i++) {
			newLiWidth = $(arrEls[i]).css('width').replace('px', '');
			if (newLiWidth < liWidth)
				liWidth = newLiWidth;
		}


		if (picRealWidth > liWidth) {
			var arrEls = $('#spotlightContainer2 .showMultiSlider-entries li').get();
			var containerWidth = $('#spotlight').width();
			var marginRWidth = (containerWidth - (picRealWidth * 4)) / 3;

			for (var i = 0; i < arrEls.length; i++) {
				// Set El Width
				$(arrEls[i]).width(picRealWidth);
				$(arrEls[i]).css('margin-right', marginRWidth);

				// Set El Left Pos
				var widthStr = String(((picRealWidth + marginRWidth) * i)) + 'px';
				$(arrEls[i]).css('left', widthStr);
			}
		}


	});
}

addLoadEvent(csc2Init);

