/* Don't frame me in */
if (top != self) {
	top.location=self.location;
}
/* Events for global (topnav) search form */
function initSearch() {
	$('#siteSearch label').click(function() {
		$('#searchText').focus();
	})
	st = document.getElementById('searchText');
	if(st) {
		st.onfocus = function() {this.className = 'active';}
		st.onblur = function() {this.className = '';}
	}
}
$(document).ready(initSearch);

