jQuery(function($) {
	$(document).ready(function(){
		$('#navigation > ul > li').hover(function() {
			$(this).addClass('hover');
			$(this).find('ul').show();
		}, function() {
			$(this).removeClass('hover');
			$(this).find('ul').hide();
		});
	});
});
