$(document).ready(function(){
    $('#header-animation').flash({ src: '/swf/header.swf', width: 780, height: 92, flashvars: {autoPlay: true, autoRewind: false}});
	
	$('.event:last').css({"border": "none"});
	
	$('#nav ul > li').hover(function() {
		$('ul:first', this).fadeIn("fast");
	},
	function() {
		$('ul:first', this).fadeOut("fast");
	});
	$('#nav ul li li').hover(function() {
			$('ul:first', this).each(function() {
			$(this).css('top', $(this).parent().position().top );
			$(this).css('left', $(this).parent().position().left + $(this).parent().width() );
			$(this).show();
		});
	},
	function() {
		$('ul:first', this).hide();
	});
	
	$.imgzoom();
});

