jQuery(document).ready(function(){
jQuery("b").hover(
function() {
jQuery(this).stop().fadeTo("slow",0);
},
function() {
jQuery(this).stop().fadeTo("slow",1);
});
 
});

$(document).ready(function(){

$(".MenuBar").hover(function() {
	$(this).animate({"height": "200px"}, 500, "swing");
},function() {
	$(this).stop(true,false).animate({"height": "20px"}, 500, "swing");
});

});
