$(function(){
	
	// container is the DOM element;
	// userText is the textbox
	
	var container = $(".shuffleme");
	
	// Shuffle the contents of container
	container.shuffleLetters();
	
});


