/*
 * All JavaScript to be fired when the DOM is ready
 */
$(document).ready(function() {

    $("#social-networks li a").tooltip({
        showURL: false
    });

    $(".podcast-subscribe").tooltip({
        showURL: false
    });

    $("ul.submenu").nmcDropDown();

    getTwitters('tweet', {
        id: 'strengthcoachmj',
        count: 1,
        enableLinks: true,
        ignoreReplies: true,
        clearContents: true,
        template: '<p><span>%text%</span></p>'
    });

	/*
	 * Technically valid workaround for target="_blank"
	 */
	$('a[rel="external"]').attr('target', '_blank');

});
