var jQueryScriptOutputted = false;
	if(typeof(cr8_timeout) == 'undefined') {
		var cr8_timeout=6000;
	}
function initJQuery() {

	//if the jQuery object isn't available
	if (typeof(jQuery) == 'undefined') {
		if (! jQueryScriptOutputted) {
			//only output the script once..
			jQueryScriptOutputted = true;
			//output the script (load it from google api)
			document.write('<scr' + 'ipt type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></scr' + 'ipt>'); 
		}
		setTimeout("initJQuery()", 50);
	} else {
		$(function() {
						$.getScript("http://Cr8tivity.com/js/jQueryCycle.js",function(){
					$('#cr8innerdiv5000152').cycle({
						fx:     'scrollHorz',
						timeout: cr8_timeout,
						delay:  -4000,
						next:   '#cr8next', 
						prev:   '#cr8prev',
						pause:  1,
						before: onBefore
					});
				});
		});
	}
}
initJQuery();
function onBefore(curr, next, opts) { 
			$('#cr8outerdiv5000152').show('slow');
}
