$(document).ready(function(){	
	
	// ***************************************************************************
	// Laat regel met wedstrijd groter zien
	// ***************************************************************************
	$(".inforij").click(function(){
		$(".inforij").css({
			"height": "auto",
			"background-color": "#ffffff"
		});
		
		$(this).css({
			"height": "50px",
			"background-color": "#f4f4f4"
		});
		
	});
	
});

// ***************************************************************************
// Zorgt voor 'standaard'-tekst in een tekstbox.
// Voorbeeld: <input type="text" name="username" onblur="addText(this);" onfocus="clearText(this)" value="Hier de tekst!" />
// ***************************************************************************

function clearText(theField)
{
	if (theField.defaultValue == theField.value)
	theField.value = '';
}

function addText(theField)
{
	if (theField.value == '')
	theField.value = theField .defaultValue;
}
