$(document).ready(function(){
	$('.section').hover(function(){
		$(this).css('background-color', '#f0eed2');
		$(this).css('cursor', 'pointer');
		$(this).find('a').css('color', '#558c41');
		$(this).find('a').css('text-decoration', 'none');
	}, function(){
		$(this).css('background-color', '#fff');
		$(this).css('cursor', 'default');
		$(this).find('a').css('color', '');
		$(this).find('a').css('text-decoration', '');
	});
	
	$('.section:not(a)').click(function(){
		var loc = $(this).find('a').attr('href');
		window.location = loc;
		/*$(this).parent().find('a').click(); */
	});
	 
	$('.nav li').hover(function() {
		$(this).find('ul').css('display', 'block');
		var offset = $(this).parent().find('a').position();
		$(this).find('ul').css('left', offset.left);
		$(this).find('ul').css('top', offset.top+24);

	}, function() {
		$(this).find('ul').css('display', 'none');
	});
});

