$(document).ready(function(){
	/* Menu */
	$('nav ul li').hover(
		function(){
			if($(this).children('ul').length){
				$(this).addClass('active').children('ul').fadeIn('fast');
			} else {
				return;
			}
		},
		function(){
			$(this).removeClass('active').children('ul').fadeOut('fast');
		}
	);
});
