
$("#gGuestbookbutton").mouseover(function () 
{
	var name = document.getElementById('gGuestbooktextfield').value;

	$(name.id).fancybox({
		'width'				: '75%',
		'height'			: '75%',
		'autoScale'			: false,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});
	
	if(name.length < 2)
	{
		
	}
});

