// JavaScript Document
var cgrmc =
{
	baseURL : "/",
	helperArr: new Array(),
	backToTop : function()
	{
		$('html, body').animate({scrollTop: '0px'}, 300);
	},
	helperTextFocus : function(ref)
	{
		this.helperArr[ref] = $("#"+ref).val();
		$("#"+ref).val('');
	},
	helperTextBlur : function(ref)
	{
		$("#"+ref).val(String(this.helperArr[ref]));
	}
}

