(function($){
	$(function() {//document ready
		var $slides = $('<div id="slides">').appendTo('#header');
		$.each([1,2,3,4,5,6,7,8,9], function(i,n){
			$slides.append('<img src="http://perotcharts.com/wp-content/themes/perotcharts/images/masthead'+n+'.jpg" />');
		});
		$slides.cycle({
			timeout:10000,
			speed:1000
		});
	});
})(jQuery);

