jQuery().ready(function()
{
	$('input[name="newsletter"]').inputDefault({ text: 'Typ hier uw e-mailadres', showDefault: function()
	{
		$(this).css({ 'font-style': 'italic', color: '#7c8a91' });
	}, showInput: function()
	{
		$(this).css({ 'font-style': 'normal', color: '#7c8a91' });
	}});

	$('input[name="from"]').inputDefault({ text: 'straat, plaats, land', showDefault: function()
	{
		$(this).css({ 'font-style': 'normal', color: '#7c8a91' });
	}, showInput: function()
	{
		$(this).css({ 'font-style': 'normal', color: '#000000' });
	}});
});
