/* Author: christian ranz <info@christianranz.com>

*/
$(document).ready(function() {
    $('.sub').hide();

    $('.navhd').hover(function(){
        if ($(this).hasClass('single')) {
            $(this).css('color','#607890');
        }
        else {
            $(this).css('color','#fff');
        }
        
        var id = $(this).attr('id').split('-');
        $('#sub-' + id[1]).show();
    },
    function() {
        var id = $(this).attr('id').split('-');
        $('#sub-' + id[1]).hide();
        $('.navhd').css('color','#005e2c');
    });

    $('.sub').hover(function(){
        var id = $(this).attr('id').split('-');
        $('#navhd-' + id[1]).css('color','#fff');
        $(this).show();
    },
    function() {
        $('.navhd').css('color','#005e2c');
        $(this).hide();
    });
});
