//Hides notice after 10 second pause
$(document).ready(function() {
	setTimeout(function() {$("#notice").slideUp(); }, 100000);
});


// redirect IE6 and older browsers, not supported
if (!(window.XMLHttpRequest)) {
	window.location = "/accounts/upgrade"
}


//Removes blue focus rectangle in safari when called
function input_focus(e,o){
	if(o.firstTime){return}
	o.firstTime=true
	o.value=""
	o.style.color="#000"
}


//toggles all subscribers for postings
function toggleAll(field,checker){
	if (field.length) {
		for (i = 0; i < field.length; i++)
			field[i].checked = checker.checked ;
	} else {
		field.checked = checker.checked;
	}
}
