$.noConflict();

jQuery(document).ready(function($) {
	// Code that uses jQuery's $ can follow here.
	$('#Slideshow').before('<div id="SlideshowNavigation">').cycle({ 
		fx:     'scrollHorz', 
		speed:  1000, 
		timeout: 6000,
		pager:  '#SlideshowNavigation',
		easing: 'easeOutCubic',
		pause:   1
	});
	$('.imgBox').corner("cc:#68737A round 15px");
	
	$.fn.search = function() {
		return this.focus(function() {
			if( this.value == this.defaultValue ) {
				this.value = "";
			}
		}).blur(function() {
			if( !this.value.length ) {
				this.value = this.defaultValue;
			}
		});
	};
	$("#SearchText").search();
	$("#InPageSearch").search();
	
});

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

