var Cerias; if (!Cerias) Cerias = {};

// do this on DOMReady
$().ready(function() {
	
	$('#content-container').prepend('<a href="/" id="header-homelink"></a>');
	
});


/**
 * Cerias.UI
 * various user interface functions for the CERIAS web site
 */
if (!Cerias.UI) Cerias.UI = {};

Cerias.UI.toggleMoreinfo = function (elid) {
	var more = $('#'+elid+'-moreinfo');
	var togg = $('#'+elid+'-toggle');
	
	var current = more.css('display');
	if (current == 'none') {
		togg.html('&#x2191;');
		more.slideDown(200);
	} else {
		togg.html('&#x2193;');
		more.slideUp(200);
	}
}