jQuery.noConflict();
jQuery(function () {
	if (jQuery(document).width() > 480) {
		slideshowDiv = jQuery('#slideshow');
		imageURI = jQuery(slideshowDiv).children('img').attr('data-baseuri');
		images = Array (
			{'file': 'slide1.jpg', 'alt': "A slideshow photo of a student writing at his desk"},
			{'file': 'slide2.jpg', 'alt': "A slideshow photo of a student playing the flute"},
			{'file': 'slide3.jpg', 'alt': "A slideshow photo of two students playing the saxophone"},
			{'file': 'slide4.jpg', 'alt': "A slideshow photo of a student smiling from ear to ear"},
			{'file': 'slide5.jpg', 'alt': "A slideshow photo of a student playing with a cube puzzle"},
			{'file': 'slide6.jpg', 'alt': "A slideshow photo of a student playing the ukulele"},
			{'file': 'slide7.jpg', 'alt': "A slideshow photo of a student in computer lab"},
			{'file': 'slide8.jpg', 'alt': "A slideshow photo of two students working together on a project"},
			{'file': 'slide9.jpg', 'alt': "A slideshow photo of a student writing at his desk"},
			{'file': 'slide10.jpg', 'alt': "A slideshow photo of a student writing at her desk"}
		);
		t = '';
		jQuery.each(images, function (i, v) {
			t += '<img src="' + imageURI + v.file + '" alt="' + v.alt + '"/>';
		});
		jQuery('#slideshow').html(t);
		jQuery('#slideshow').cycle({'speed': 1500});
		jQuery('#goals li').hide();
		(function hidenext(jq){
		    jq.eq(0).fadeIn(1000, function(){
		        (jq=jq.slice(1)).length && hidenext(jq);
		    });
		})(jQuery('#goals li'))
	}
});

