(function($){
	//Document Ready
	$(document).ready(function(){ 
		
		$("p").filter(function() {
			if ( $(this).find('img').length == 0 ) {
				return $.trim($(this).text()) === "";
			};
        }).remove();
		
        $('.subnav_widget ul li').hover(
        	function(){
        		$(this).addClass('hover');
        	}, function(){
        		$(this).removeClass('hover');
        	});
		
		$('#header ul.top-links > li:last span').remove();
		
		//Navigation Drop Down
		$('#navigation > ul > li').hover(function(){ 
			$(this).find('a:eq(0)').toggleClass('hover');
			$(this).find('.sub-menu').stop(true,true).toggle('fast');
		});
		
		//Theater Element Hover
		$('#theater li').mouseenter(function(){ 
			$(this).find('.overlay').stop(true,true).fadeIn();
		}).mouseleave(function(){ 
			$(this).find('.overlay').stop(true,true).fadeOut();
		});
		
		//History Widget Accordion
		$('.history_widget .read-more').click(function(){ 
			var container = $(this).parent().find('.wrap');
			container.animate({
				'height': container.find('.inner').outerHeight()
			},{
				queue: false,
				duration: 300,
				easing: 'linear'
			});
			$(this).css('opacity', 0);
			return false;
		});
		
		//Map popup
		$('.map_widget a').colorbox({
			onLoad: function(){ 
				if($.browser.msie && $.browser.version == 6 ){
					DD_belatedPNG.fix('#cboxTopLeft, #cboxTopCenter, #cboxTopRight, #cboxBottomLeft, #cboxBottomCenter, #cboxBottomRight, #cboxMiddleLeft, #cboxMiddleRight');
				}
			 }
		});
		
		//PNG Fix
		if($.browser.msie && $.browser.version == 6 ){
			DD_belatedPNG.fix('.overlay, .image-overlay');
		}
		
	});
})(jQuery)
