$(function() {
	
	$('#header .region').mouseenter(function() {
		$(this).find('.indent').addClass('open');
		$(this).find('.dropdown').show();
	}).mouseleave(function() {
		$(this).find('.open').removeClass('open');
		$(this).find('.dropdown').hide();
	});
	
});
