
$(document).ready(function(){
	// generate random numer between 0 and 10 for first opened letter
	var randNum = Math.floor(Math.random() * 10);
	// apply the accordion to the artist list
	$("#artistList").accordion({
		 header: "h3",
		 autoHeight: false,
		 event: "mouseover",
		 active: randNum,
		 selectedClass: "selected",
		 alwaysOpen: true
	});
	
	$(".makeAccordionFirstOpen").accordion({
	     active: ".openAtLoad",
		 header: "span",
		 autoHeight: false,
		 event: "click",
		 alwaysOpen: false
	});

});

