// JavaScript Document

jQuery(document).ready(function() {
	jQuery('ul#nav > li').hover(function() {
		jQuery('ul:first', this).fadeIn("slow");
	},
	function() {
		jQuery('ul:first', this).fadeOut("slow");
	});

	jQuery('ul#nav li li').hover(function() {
		jQuery('ul:first', this).each(function() {
			jQuery(this).css('top', jQuery(this).parent().position().top );
			jQuery(this).css('left', jQuery(this).parent().position().left + jQuery(this).parent().width() );
			jQuery(this).fadeIn("slow");
		});
	},
	function() {
		jQuery('ul:first', this).fadeOut("slow");
	});
	
});
