//==============================================================================
//
//	THE BEHAVIOR USES THE PLUGIN: "jShowOff -- http://ekallevig.com/jshowoff"
//	It works by creating 'slides' from the child elements (eg. `<li>`) inside
//	a specified wrapper element (eg. `<ul>`) on which `.jshowoff()` is invoked.
//	It then rotates through the slides, with options for controls, links, and
//	more.  This type of module is often used to promote pages, sections, or
//	features on a site.
//
//==============================================================================
//	Options:
//
//		PROPERTY		TYPE		DEFAULT			DESCRIPTION
//		animatePause	boolean		true			Pause animation text when pausing?
//		autoPlay		boolean		true			Start automatically?
//		changeSpeed		integer		600				Speed of transition (ms)
//		controls		boolean		true			Create and display controls?
//		controlText		object		{play:'Play',	Text for Controls?
//									pause:'Pause',
//									previous:'Previous',
//									next:'Next'}
//		cssClass		string		true			add custom class to jshowoff wrapper?
//		effect			string		'fade'			'fade', 'slideLeft' or 'none'
//		hoverPause		boolean		true			Pause on hover?
//		links			boolean		true			cresate and display numerical
//													links to each slide?
//		speed			integer		3000			time slide is shown (ms)

   jQ(function(){
	  jQ('#marketing-block > ul').jshowoff({
		 changeSpeed:750,
		 speed:6000,
		 links:false,
		 controls:false
	  });
   });
