var visibleFlag = false;

function onButtonHomeClick() {
    displayBox();
};

function displayBox() {
	jQuery("#customBox").show(2000);
};


