﻿$(function(){
	topicLoaded();
});

function topicLoaded()
{
	$('#topicSections .topicResourceViewer').accordion({
		autoheight:true,
		animated: 'slide',
		fillSpace: false,
		header:'h4'
	});
	$('#topicSections #ursaLoginUser').textBoxInstructions('Enter Username');
	$('#topicSections #ursaLoginPass').textBoxInstructions('Enter Password');
	$('#topicSections #ursaLoginUser').keypress(function(e){
		if (e.which == 13
			&& $('#topicSections #ursaLoginPass')[0].value == 'Enter Password')
		{
			$('#topicSections #ursaLoginPass').focus();
			return false;
		}
	});
	$('#zoneNav .throbber').fadeOut();
}
