$(document).ready(function() {
	$('#content .homepage-call-out').delay(30000).fadeOut(); //fade out of "newsworthy" box after 30 seconds

	$('#content div.slideshow').slides({
			controlOrientation: 'none',
			controlAlign: 'none',
			controlVAlign: 'none',
			controlContainer: '#breadcrumbs .content',
			controlTooltip: 'true',
			prevNextPanel: '.slideshow-prev-next-panel',
			filmstrip: 'true',
			filmstripSlideTooltipFunc: function(e) {
					$(e).find('.slide-image .tooltip-container').applyTooltip({cornerTooltip: 'leftBottom'}); //slideshow image
				},
			filmstripIconTooltipFunc: function(e) {
					$(e).find('ul.icons > li').applyTooltip({
						cornerTooltip: 'leftMiddle',
						cornerTarget: 'rightMiddle',
						positionTarget: false,
						adjustX: 40
					}); //slideshow icons
				}
	}); // homepage slideshow
	
	$('#breadcrumbs .control-panel > div').applyTooltip({className: 'tooltip-gray', adjustX: 20}); //slideshow dashes in header
	$('#content .slideshow .jquery-slide .slide-image .tooltip-container').applyTooltip({cornerTooltip: 'leftBottom'}); //slideshow image
	$('#content .slideshow .jquery-slide ul.icons > li').applyTooltip({
		cornerTooltip: 'leftMiddle',
		cornerTarget: 'rightMiddle',
		positionTarget: false,
		adjustX: 40
	}); //slideshow icons

	$('#content .slideshow-prev-next-panel li').applyTooltip(); // slideshow prev/next buttons
});
