var webshop = new function()
{
	this.setFormFocusField = function(sFieldName)
	{
		$(document).ready(function() {
			$("#" + sFieldName).focus();
		});
	};
	
	this.setFormFocusFirstField = function(sFormName)
	{
		$(document).ready(function() { 
			$("#" + sFormName + " :input:visible:enabled:first").focus();
		});
	};
};