jQuery(document).ready(function()
{
    jQuery('.qaccordionContent').hide();
    
    jQuery('.qaccordionLink').hover( function() {
            jQuery(this).css({'background-color': '#A8CAE6'});
            //jQuery(this).find("a").css({'color' : '#FFFFFF'});
        }, function() {
            jQuery(this).css({'background-color': '#FFFFFF'});
            //jQuery(this).find("a").css({'color' : '#0F5596'});
        });
        
})
