$(function(){
	$('#banner nav li').hover(function(){
		$(this).addClass('hover');
	},function(){
		$(this).removeClass('hover');
	});
	if( $('#homepage').length ) {
		$('#homepage ul').cycle({
			timeout: 5000,
			before: function(currentElement, nextElement, options, forwardFlag) {
				var newHref = $(this).find('a').attr('href');
				$('#home-frame-link').attr('href', newHref);
			}
		});
	}
	if( $('#gallery').length ) {
		$('#gallery a').fancybox({
			margin: 0,
			padding: 0,
			height: 256,
			width: 352,
			centerOnScroll: true,
			overlayOpacity: 0.75,
			overlayColor: '#000',
			transitionIn: 'elastic',
			transitionOut: 'elastic'
		});
	}
	if( location.href.match(/newsroom/) ) {
		var parentLi = $('#nav-newsroom');
		if( parentLi.hasClass('here') === false || parentLi.hasClass('parent-here') === false ) {
			parentLi.addClass('parent-here');
		}
	}
	$('a[rel="colorbox"]').colorbox();
});

