/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

$(document).ready(function() {
    $("#twitter_link")
        .mouseenter(function() { $("#twitter_link").text( "Follow Us" ); })
        .mouseleave(function() { $("#twitter_link").text( "Twitter" ); });
    $("#facebook_link")
        .mouseenter(function() { $("#facebook_link").text( "Connect" ); })
        .mouseleave(function() { $("#facebook_link").text( "Facebook" ); });
    $("#youtube_link")
        .mouseenter(function() { $("#youtube_link").text( "Subscribe" ); })
        .mouseleave(function() { $("#youtube_link").text( "Youtube" ); });
});



