
	$(document).ready(function()
	{
		clearInput("#field_opmerking");
		moveNavImages();
		if(window.alphaPNG) alphaPNG();
	});
	
	function clearInput(id)
	{
		var defaultValue = $("#frm-contact input[name='startvalue']").val();
	
		$(id).focus(function()
		{
			if ($(id).val() == defaultValue )
			{
				$(id).val('');
			}
		}).blur(function()
		{
			if ($(id).val() < 1)
			{
				$(id).val(defaultValue);
			}
		});
	}
	
	function moveNavImages()
	{
		$('#nav-main img').hover(
			function()
			{
				$(this).css('margin-top', '-20px');
			},
			function()
			{
				// only move back when the menu item is not active
				$('#nav-main img').not('.active').css('margin-top', '0');
			}
		);
	}
