$(document).ready(function() {
	
	$('.controls').show();
	
	$('.navigation li').hover(function() {
		$(this).children('ul').addClass('hovered');
	}, function() {
		$(this).children('ul').removeClass('hovered');
	});
	
});

