jQuery(function(){

    var talker = jQuery("#talking");

    talker.hide();
    
                   
    jQuery("li.articles").hover(function(){
        talker.html("Helping you to reduce or eliminate your arrhythmia symptoms").show();
    }, function() {
        talker.hide();
    });
    
    jQuery("li.forum").hover(function(){
        talker.html("Share your heart worries and triumphs with others like you").show();
    }, function() {
        talker.hide();
    });
    
    jQuery("li.home").hover(function(){
        talker.html("Skipping Hearts home").show();
    }, function() {
        talker.hide();
    });
    
    jQuery("li.glossary").hover(function(){
        talker.html("Not sure what RVOT, PAT or PSVT means? Find out here.").show();
    }, function() {
        talker.hide();
    });

    jQuery("li.journal").hover(function(){
        talker.html("Your own personal space").show();
    }, function() {
        talker.hide();
    });
    
    

    
            
});