jQuery(function($) {
	/* Add the orange arrow to the selected right nav automatically */
	var $selectednav = $('#rightnav .selected');
	$selectednav.prev().css('border-bottom', '1px #ecd0b9 solid');		
	$selectednav.prepend('<span class="selected" />');
	
	/* Zebra stripe the class offerings list */
	$('.stripeMe dt:odd').addClass('striped');
	$('.stripeMe dd:odd').addClass('striped');
	/* add the 'new' image for new classes w/out having to copy and paste the image tag */
	$('dt.new').append('&nbsp;<img src="/assets/images/new.gif" width="34" height="14" alt="NEW" />');
	
	/* Home Page banner random image change */
	$('#banner .img').each(function () {
		var bannerImage = ['building', 'guitar', 'painting','photography', 'keyboard'];
		var bannerClass = bannerImage[Math.floor(Math.random() * bannerImage.length)];
		$(this).addClass(bannerClass);
	});

});