/*
	SLIDELIST 
	
	This file defines the lists of pictures in the slideshow
	and an optional link and caption for each one.
	
	JavaScript Slideshow by Patrick Fitzgerald
	Get complete script and documentation at
	http://slideshow.barelyfitz.com/
*/


// ***** Define slideshow parameters ******

ss = new slideshow("ss");  // create the slideshow object
ss.prefetch = 5;   // limit number of images that are prefetched, default = all (-1), current (0)
ss.repeat = true;  // default, set false to stop after last slide, true to loop

// ***** List the slides and add them to the slideshow
// new slide ("src", "link", "caption", "window", "attr") ONLY src is required

ss.add_slide(new slide("/imglib/slideshow_title_500.png", "", "")); // title slide for the show

// ********* ADD SLIDES HERE ************
ss.add_slide(new slide("1230_boat/arm.png", "", "ARM. Broke out in early December from a pennant formation and greatly narrowed Bollinger bands. It's now retracing part of an almost 50% gain."));
ss.add_slide(new slide("1230_boat/cogo.png", "", "COGO. Broke above both moving averages [50- and 200-day] in early December on heavy volume for a 30% price move."));
ss.add_slide(new slide("1230_boat/newp.png", "", "NEWP. Bounced from the lower Bollinger band to break above the 50-day moving average, followed by about a 25% gain."));
ss.add_slide(new slide("1230_boat/pbh.png", "", "PBH. In November PBH was an 'avoid' in a downward channel, but when it began to move, it jumped about 20%."));
ss.add_slide(new slide("1230_boat/sri.png", "", "SRI. Broke from a descending triangle when it crossed the 50-day moving average, gaining about 50% from the previous low. Interesting, the price move has not been accompanied by volume."));

