$(document).ready(function() {

	
$('ul#navigation li').hover(
		function () {
			//show its submenu
			$('ul', this).fadeIn(400);
			$('ul', this).parent().addClass("dropdown");
		}, 
		function () {
			//hide its submenu
			$('ul', this).fadeOut(400);		
			$('ul', this).parent().removeClass("dropdown");	
		}
	);

});