function initNavigation() {
 $(".topbutton").each(function(i){
  $(this).hover(
   function() {
    $(this).removeAttr("style"); /* gets rid of left overs from animation */
    $(this).addClass("hoveron");
   },
   function() {
    $(this).removeClass("hoveron");
   }
  );
 }); //each
}



function animateButtons() {
 $('#butmain').animate({
  "backgroundColor" : "#c2d3fc"
 }, 250, function() {
  $('#butmain').animate({
   "backgroundColor" : "#345276"
  }, 250, function() {
  
   $('#butdeli').animate({
    "backgroundColor" : "#c2d3fc"
   }, 100, function() {
    $('#butdeli').animate({
	 "backgroundColor" : "#345276"
	}, 100, function() {
	
     $('#butartshack').animate({
      "backgroundColor" : "#c2d3fc"
     }, 100, function() {
      $('#butartshack').animate({
       "backgroundColor" : "#345276"
      }, 100, function() {
      
       $('#butnews').animate({
        "backgroundColor" : "#c2d3fc"
       }, 150, function() {
        $('#butnews').animate({
         "backgroundColor" : "#345276"
        }, 150, function() {
        
         $('#butmap').animate({
          "backgroundColor" : "#c2d3fc"
         }, 300, function() {
          $('#butmap').animate({
           "backgroundColor" : "#345276"
          }, 300, function() {
          
           $('#butonlinestore').animate({opacity: 1.0}, 150).animate({
            "backgroundColor" : "#c2d3fc"
           }, 250, function() {
            $('#butonlinestore').animate({
             "backgroundColor" : "#345276"
            }, 250, function() {
             $('#butonlinestore').animate({
              "backgroundColor" : "#c2d3fc"
             }, 175, function() {
              $('#butonlinestore').animate({
               "backgroundColor" : "#345276"
              }, 175, function() {
               
	           $('#butmain').animate({opacity: 1.0}, 1000).animate({
	             "backgroundColor" : "#c2d3fc",
	             "color" : "black"
	           }, 150, function() {
	             //and done!
	           });
              });
             });
            });
           });
          });
         });
        });
       });
      });
     });   
    });
   });
  });
 });
    
    

   /*
    $('#butnews')
    $('#butmap')
    $('#butonlinestore')*/
}