var menu_timer;
var c = 'blue';

$().ready(function(){
  $('#nav > li').mouseover(function(){
    clearTimeout(menu_timer);

    $('#nav .dropdown_show, #nav .dropdown_persist').css('display', 'none').removeClass('dropdown_show');
    if($('ul', this).length) {
  	  $('ul', this).css('display', '').addClass('dropdown_show');
  	}
  }).mouseout(function(){
    menu_timer = setTimeout(function() { 
	  $('#nav .dropdown_show').css('display', 'none').removeClass('dropdown_show');
	  $('#nav .dropdown_persist').css('display', '');
	}, 800);
  });

  $('#nav a').each(function() {
    if($(this).attr('href') == location.href) {
      $(this).css('color', c);

      if($(this).parents('ul[id!=nav]').length) {
        $(this).parent().parent().addClass('dropdown_persist')
          .prev().css('color', c);
      } else {
        $(this).siblings('ul').addClass('dropdown_persist')
		  .find('li:eq(0) a').css('color', c);
      }
    }
  });
});
