// Navigation
$(document).ready(function() {
	$('#navigation li ul').hide();
	$('#navigation li').mouseenter(function() {
		$('ul', this).stop(true, true).slideDown(500);
	});
	$('#navigation li').mouseleave(function() {
		$('ul', this).stop(true, true).slideUp(200);
	});
});

