$(document).ready(function() {

	 $(".navButton").hover(
      function () {
      	$(this).children().children('a.link').css('color', '#D09A57');
        $(this).children('.navSubtext').css('color', '#3C3C3C');
      }, 
      function () {
      	$(this).children().children('a.link').css('color', '#860000');
        $(this).children('.navSubtext').css('color', 'white');
      }
    );
    
    $(".navButton").click (
    	function() {
    		if ($(this).is(".url1")) {
    			window.location = "index.htm";
    		}
    		else if ($(this).is(".url2")) {
    			window.location = "meetsteve.htm";
    		}
    		else if ($(this).is(".url3")) {
    			window.location = "issues.htm";
    		}
    		else if ($(this).is(".url4")) {
    			window.location = "events.htm";
    		}
    		else if ($(this).is(".url5")) {
    			window.location = "contact.htm";
    		}
    	}
    );
});

