$(function() {
	
	// mega menu
	// bron: http://www.webdesigndev.com/web-development/create-the-fanciest-dropdown-menu-you-ever-saw
	$(".dropdown").each(function () {
		$(this).parent().eq(0).hover(function () {
			$(".dropdown:eq(0)", this).show();
		}, function () {
			$(".dropdown:eq(0)", this).hide();
		});
	});

});
