function SetRandomTitle(ElemID)
{
    TitleArray = [
    'After the orange electrolyte had been cleared up it was noted in the lab-book, "No, C14 couldn\'t handle \'just one more volt\'".',
    'It was quickly realised the issue wouldn\'t be fixable in software.',
    'If supplying sufficient current, all LEDs are dual colour types; Green -> Orange, Yellow -> Red and Red -> explode-y colour.',
    'Right before the magic blue smoke comes out, an NE555 timer IC makes a great miniature heater.',
    'Every circuit board has a fuse incorporated somewhere, after all, at some point the track width must be at a minimum.',
    'Something is likely wrong if your circuit gives out more heat than your soldering iron ever does.',
    'The satisfying glow of thermionic tubes can be recreated with silicon devices, simply quadruple the recommended maximum operating current.'
    ];
    document.getElementById(ElemID).title = TitleArray[(Math.floor(((TitleArray.length-1) - (0 - 1))*Math.random()) + 0)];
}

