$(document).ready (function (){
		// when you hover over the id the corresponding class should appear disappear
		$("#main-nav > div > ul").mouseover(function() {
								var menuItems = $(this).children().eq(1);
								menuItems.parent().css('background-color', '#766C31');
								menuItems.show();
							} );

		$("#main-nav > div > ul").mouseout(function() {
								var menuItems = $(this).children().eq(1);
								menuItems.parent().css('background-color', '#DCE2A6');
								menuItems.hide();
							} );

	}
)


/*

$(document).ready(function() {
   $("#orderedlist li:last").hover(function() {
     $(this).addClass("green");
   },function(){
     $(this).removeClass("green");
   });
 });

 
 $(document).ready(function() {
   // use this to reset several forms at once
   $("#reset").click(function() {
     $("form").each(function() {
       this.reset();
     });
   });
 });
 
  $(document).ready(function() {
   $("#orderedlist li:last").hover(function() {
     $(this).addClass("green");
   },function(){
     $(this).removeClass("green");
   });
 });

*/
