/*!	SWFObject v2.0 <http://code.google.com/p/swfobject/>
	Copyright (c) 2007 Geoff Stearns, Michael Williams, and Bobby van der Sluis
	This software is released under the MIT License <http://www.opensource.org/licenses/mit-license.php>
*/
// BeginOAWidget_Instance_2559022: #reel

   		    reelAddCaption=false;
$(document).ready(function() {
	$('#reel').cycle({
		after:			reelOnCycleAfter, //the function that is triggered after each transition
		autostop:			false,     // true to end slideshow after X transitions (where X == slide count) 
		fx:				'turnDown,',// name of transition effect 
		pause:			true,     // true to enable pause on hover 
		randomizeEffects:	true,  // valid when multiple effects are used; true to make the effect sequence random 
		speed:			1000,  // speed of the transition (any valid fx speed value) 
		sync:			true,     // true if in/out transitions should occur simultaneously 
		timeout:		6000,  // milliseconds between slide transitions (0 to disable auto advance) 
		fit:			true,
		height:		   '200px',
		width:         '700px'   // container width (if the 'fit' option is true, the slides will be set to this width as well) 
	});
}); 
function reelOnCycleAfter() { 
	if (reelAddCaption==true){
			$('#reel-caption').html(this.title); 
	}
} 
		
// EndOAWidget_Instance_2559022


