$(document).ready(function(){
    $('#menu #nav a img').attr('style', 'display:none;');
    // Download button
    $('div#download-wrapper').hover(function() {
        $(this).children('div#downlaod-content').show();
        $(this).children('a#download').addClass('download-hover');
    }, function() {
        $(this).children('div#downlaod-content').hide();
        $(this).children('a#download').removeClass('download-hover');
    });
});
