$(function () {
	
	// Flash
	var flashElement = $('#flash');
	
	if (flashElement) {
		
		flashElement.fadeIn('fast');
		
		$('#flashCloseButton').click(function () {
			flashElement.fadeOut('fast');
			this.blur();
			return false;
		});
		
	}
	
	// Drop Down
	if (document.all && document.getElementById) {
		
		$("#navigationNews li").each(function () {
			
			$(this).mouseover(function() {
				$(this).addClass('over');
			});
			
			$(this).mouseout(function() {
				$(this).removeClass('over');
			});
		});

	}
	
	
});

