



$(document).ready(function () {



  $('#tnav').toggle(function () {
	  $('#nav').slideDown(); 
		$(this).css("margin-left", "110px");
	}, function() { 
	  $('#nav').slideUp();  
		$(this).css("margin-left", "0px");
  });

  $('#tadr').toggle(function () {
	  $('#naw').slideDown(); 
		$(this).css("margin-left", "90px");
	}, function() { 
	  $('#naw').slideUp();  
		$(this).css("margin-left", "0px");
  });



// blurring
  $('a').click(function () {
	$(this).get(0).blur();
  });
  $('span').click(function () {
	$(this).get(0).blur();
  });
});



