function loadShoutBox() {
	shoutBoxLoaded = true;
	hoverEmpty = false;
	var shoutBoundary = $(document.createElement('div')).attr('id','shoutBound');
	var sbCss = { 'position' : 'absolute' , 'left' : '0px' , 'top' : '0px' , 'width' : '600px' , 'height' : $('#hoverCanvasBody').height()+'px' };
	shoutBoundary.css(sbCss);
	shoutBoundary.appendTo('#hoverCanvasBody');
	var sForm = $(document.createElement('form')).attr('id','shoutForm');
	sForm.attr('method','POST');
	sForm.attr('action','');
	sForm.appendTo('#shoutBound');
	var sTable = $(document.createElement('table')).attr('id','sbTable');
	sTable.addClass('sbTable');
	sTable.appendTo('#shoutForm');
	var sRow = $(document.createElement('tr')).attr('id','sbRow');
	sRow.appendTo('#sbTable');
	var sCell1 = $(document.createElement('td')).attr('id','sCell1');
	sCell1.appendTo('#sbRow');
	var shoutUser = $(document.createElement('label'));
	shoutUser.html('User: ');
	shoutUser.appendTo('#sCell1');
	var sCell2 = $(document.createElement('td')).attr('id','sCell2');
        sCell2.appendTo('#sbRow');
	var userInput = $(document.createElement('input')).attr('id','userInput');
	userInput.attr('type','text');
	userInput.attr('MAXLENGTH','25');
	userInput.appendTo('#sCell2');
	var sCell3 = $(document.createElement('td')).attr('id','sCell3');
        sCell3.appendTo('#sbRow');
        var shoutMsg = $(document.createElement('label'));
        shoutMsg.html('Message: ');
        shoutMsg.appendTo('#sCell3');
	var sCell4 = $(document.createElement('td')).attr('id','sCell4');
        sCell4.appendTo('#sbRow');
        var msgInput = $(document.createElement('input')).attr('id','msgInput');
        msgInput.attr('type','text');
	msgInput.attr('MAXLENGTH','255');
	msgInput.addClass('messageInput');
        msgInput.appendTo('#sCell4');
	var sCell5 = $(document.createElement('td')).attr('id','sCell5');
        sCell5.appendTo('#sbRow');
	var sbSubmit = $(document.createElement('input')).attr('id','sbSubmit');
	sbSubmit.attr('type','submit');
	sbSubmit.attr('value','Post');
	sbSubmit.addClass('sbSubmit');
	sbSubmit.appendTo('#sCell5');

}
$(document).ready(function() {
	
});

