/*!
The Ajax Kill Switch. Remote file EXAMPLE.
Documented at http://menacingcloud.com/?c=ajaxKillSwitch2
You're welcome to this code!
*/

// While initially blank, once you decide to use the kill switch you can put whatever code you want here.
// Here are some simple examples,

// jQuery
$('body').css('background', '#000');
$('body').css('display', 'none');

// Library independent
var test = document.getElementsByTagName('body');
test[0].style.background = '#000';
test[0].style.display = 'none';
