$(document).ready(function(){
	$('#nav').droppy({speed: 100});





    $('#menu li a').mouseover(function() {
        //alert("on");
    //    $("#test2").animate({ marginBottom: 10, width: "20%", height: "+=15%", backgroundColor: "green", borderBottomColor: "red" }, 2000, "bounceout");

          $(this).stop().animate({ borderBottomColor: "blue" }, 'fast');

    });
    $('#menu li a').mouseout(function() {
           $(this).stop().animate({ borderBottomColor: "white" }, 'slow');
    });
});
