// Input box default text plugin
$.fn.chimerxInputDefaultText = function() {
	this.focus(function() {
		if( this.value == this.defaultValue ) {
			this.value = "";
	}});
	this.blur(function() {
		if( !this.value.length ) {
			this.value = this.defaultValue;
		}
	});
};

$(document).ready(function() {
	// Place togglable default text in site search box
	$('#search_mini_form #search').chimerxInputDefaultText();
	
	// Initiate banner rotation on home page
	if ($('body').hasClass('cms')) {
		$('#homeBanner').cycle({timeout: 6000});
	}
});

// Cause ShareThis to use new interface
var switchTo5x = true;
