$(document).ready(function() {
    // NAVIGATION: HOVER CLASS
    $('#navigation_container').children('.button').each(function(ind,ele) {
        $(ele).children('a').hover(function() {
            $(this).parent().addClass('hover');
        }, function() {
            $(this).parent().removeClass('hover');
        });
    });
    
    // FOOTER NAVIGATION: HOVER CLASS
    $('#footer_navigation_container').children('.button').each(function(ind,ele) {
        $(ele).children('a').hover(function() {
            $(this).parent().addClass('hover');
        }, function() {
            $(this).parent().removeClass('hover');
        });
    });
    
    // H1 STYLE: ADD LION LOGO
    $('#content').find('h1').append('<div class="h1_lion"></div>');
});
