$(function() { 
	$(".focus_me:first").focus();
	$("a.external").attr( "target", "_blank" );
	$("form.external").attr( "target", "_blank" );
	$("a[href^=http]").attr( "target", "_blank" );
	$("form[action^=http]").attr( "target", "_blank" );
});

function ajax( divId, page, bustCache ) {
	if( bustCache == "undefined" ) var bustCache = false;		
	if( bustCache ) page = page + "&cb=" + getNow();		
	$('#'+divId).load(page,function(){$(this).slideToggle();});
}

function getNow() {
	var d = new Date();
	return d.getTime()
}

