	/* DropDown */
	$(document).ready( function(){
		$('#navigation ul li').hover(
			function()	{
				$('.dropdown',this).slideDown('fast');
			},
			function() {
				$('.dropdown', this).slideUp('fast');
			});
	});
