$.noConflict();

jQuery(document).ready(function($) {
	// Code that uses jQuery's $ can follow here.
	jQuery("a[rel='colorbox']").colorbox({transition:"fade"});
	/*
	$('#Slideshow').cycle({ 
		timeout:	8000,
		speed:		2500
	});
	*/
	
	$('#Slideshow').before('<div id="SlideshowNavigation">').cycle({ 
		fx:     'fade', 
		speed:  3000, 
		timeout: 6000,
		pager:  '#SlideshowNavigation',
		easing: 'easeOutCubic',
		pause:   0
	});
	


});

// Code that uses other library's $ can follow here.

