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

    getTwitters('twitter-status', {
		id: 'RobTrainSystems',
		count: 1,
		enableLinks: true,
		clearContents: true,
		template: '%text%'
	});

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

});
