﻿//$(document).ready(function(){
//    $(document).ready(function () {
//        $('.topNav_button .topNav_button_bottom').fadeOut(0);
//    });
//});

$(function() {
    $(".topNav_button").hover(function() {
        $(this).children('.topNav_button_bottom').fadeOut(150); 
        }, function() { 
        $(this).children('.topNav_button_bottom').fadeIn(200); 
    });
});
