// Contains all Javascript to be executed on pageload

window.onload = function() {
	// Informs IE/Mac users to GET A NEW BROWSER
	if (navigator.appName.indexOf('Internet Explorer') > -1 && navigator.appVersion.indexOf('Mac') > -1) {
		alert("You are using an out of date browser and as such, this site may not display correctly.\n\nWe recommend you download a newer browser such as Firefox (www.mozilla.com) and use that.");
	}

	// Sets all <a> tags with rel="external|newpage" to open in a new window
	// Target attribute is not valid in Strict doctype
	var links = document.getElementsByTagName('a');
	for (var i = 0 ; i < links.length ; i++) {
		if(links[i].rel && (links[i].rel == "external" || links[i].rel == "newpage")) {
			links[i].target = '_blank';
			links[i].title = 'This link opens in a new window.'

		}

	}

	var image1 = new Image();
	image1.src = 'http://www.csuchico.edu/advancement/_common_files/_img/bg_contentfooter_hover.jpg';

}

// $(document).ready(blockSpamBots);
$(document).ready(convertMailto);
$(document).ready(convertBioLinks);
$(document).ready(function() {$('.treelist>li>button').parent('li').attr({className: 'collapsed'})});
if($('.relhead')) {
	$(document).ready(function() { 
		$('.relhead').hide();
	});
}
if($('.feature')) {
	$(document).ready(function() {
		$('.feature').innerfade({
			speed: 'slow',
			timeout: 15000,
			type: 'random',
			containerheight: '197px'
		});
	});
}