$(document).ready(function(){	initAlumni();	initSpotlight();});function initAlumni(){	var profile_num = $('#profiles-bound dl');		initSliderControl("hor", $("#profiles-bound"), "alumni_next", "alumni_prev", profile_num.length, 175);}function initSpotlight(){	var spotlight = $("#spotlight");	var spotlight_bound = $("#spotlight-bound");	var spotlight_holder = $("#spotlight-items");	var spotlight_items = $("#spotlight-items div");		maxItems = 3;	var sl_height = 0;			var i = 0;	var len = spotlight_items.length;	for (i; i < len; i++)	{				spotlight_items[i].className = "";		if (i < maxItems)		{			sl_height += spotlight_items[i].offsetHeight + 5;//spotlight_items[0].offsetHeight + 5;		}	}		var moveVal = spotlight_items[0].offsetHeight + 5;				$(spotlight).css({height: sl_height + "px"});	$(spotlight_bound).css({height: sl_height + "px"});	initSliderControl("vert", spotlight_holder, "sl_btnDown", "sl_btnUp", spotlight_items.length - maxItems + 1, moveVal, 3, true);}
