// JavaScript Document

/*** 
    Simple jQuery Slideshow Script
    Released by Jon Raasch (jonraasch.com) under FreeBSD license: free to use or modify, not responsible for anything, etc.  Please link out to me if you like it :)
	http://jonraasch.com/blog/a-simple-jquery-slideshow
***/


            function slideSwitch(target) {
                var current = $(target + ' .slide:eq(0)');
                var next = $(target + ' .slide:eq(1)');
                $(target).append(current);
                next.fadeIn(2000);
                current.fadeOut(2000);
            }
            $(function() {
                setInterval("slideSwitch('#newinstructions')", 5000 );
                setInterval("slideSwitch('#promotions')", 7500 );
            });
           
