// prepare the form when the DOM is ready 
$(document).ready(function() { 
    
    // Clicking "add to my zhongwen"
	$('.addMyZw').click (function () {
	
		wordId = $(this).parent().parent().get(0).id.substr(4);
		addToMyZhongwen(wordId);
		
		return false;
	
	});
	
	// Focus the word box
	$('#txtWord').focus();
	
    
}); 

function showThrobber(){
	$('#dictSearchResults').hide();
	$('#dictThrobber').show();
}

