$(document).ready(function() {

	// fix menus in IE and add keyboard navigation
	$('#navigation').scriptFocus();
	
	// clear "SEARCH CSE" out of the search box first time focused
	$('#search_input').one('focus', function() { this.value = '' });

	// ie 6 flickering
	try {document.execCommand("BackgroundImageCache", false, true);} catch(err) {}

	// add external link and document icons
	$('#nav, #contentwrapper').linkHints({
		base : $('link[@rel=home]').attr('href'),
		targetClass : ".arrow",
		cb : function(){
			return true
		}}
	);

	// call research spotlight cycler
	$("body").addClass("js_en");
	$("ul#research_spotlights li").hide();
	if ($('body.home').length) {
		SpotlightCycle(5);
	} else {
		SpotlightCycle(5); StopCycling();
	}

	});
