function showFormArea() {
	
	document.getElementById('formarea').style.display = 'block';
	
	$('#urlform').cycle({
												fx:      'scrollLeft', 
											  speed:    200, 
											  timeout:  1, 
												autostop: 1, 
												delay: 		-2000 
											});
	
	document.getElementById('formarea').className = 'posfix';
	document.getElementById('resultarea').className = 'posfix';
	
	return false;
	
}

function initTinify() {
	var oI = new Image();
	oI.src = '/images/logo_hover.png';
}

window.onload = function () { initTinify(); };

