//-- INIT --
$(document).ready(function() {
	initSuperfishDropdown();
	initCufonHeaders();

	$("#verhuur").fancybox({
		'width'				: 620,
		'height'			: 585,
		'autoScale'			: false,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});

	$("#verhuur-inline").fancybox({
		'width'				: 620,
		'height'			: 585,
		'autoScale'			: false,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});
});


//-- MEGA DROPDOWN --
function initSuperfishDropdown() {
	  $('.sf-menu').superfish();
}

function initCufonHeaders()
{
	Cufon.replace(['#intro-content h2', '#intro-content h3', 'h1'], {
		hover: true
	});
}

//-- INPUT VELDEN --
function clearText(theField)
{
    if(theField.defaultValue == theField.value)
	{
		theField.value = '';
	}
}
function addText(theField)
{
    if(theField.value == '')
	{
		theField.value = theField.defaultValue;
	}
}
