/* 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 = $('#searchText');
	st.blur(function(){
		this.removeClass('active');
	}); 
	st.focus(function(){
		this.addClass('active');
	});
	*/
	st = document.getElementById('searchText');
	if(st) {
		st.onfocus = function() {this.className = 'active';}
		st.onblur = function() {this.className = '';}
	}
}
$(document).ready(initSearch);