//
// When jQuery is mingled with Prototype (maptacular), use the following code:
//

// Capture the jQuery object into another variable like, $o (o = object)
//
var $o = jQuery;

// Call the jQuery.noConflict() function to map $ back to whatever it was before jQuery grabbed it
//
jQuery.noConflict();

// Use the $o instead of $ when calling jQuery methods, EXCEPT, make sure to specify $ within the 
// anonymous function() as a parameter, i.e. function($).  This way, you don't have to change anything
// inside of the anonymous function block...
//
$o(document).ready(function($) {
	// Slideshow implementation
	$('.home_slideshow_box').cycle({
		fx: 'fade' });
	$('.inside_slideshow_image').cycle({ 
			timeout: 3500,
			fx:		'fade' });
});

