window.addEvent('domready', function() {

	$('topsearch').addEvents({
		focus: function() {
			this.value = '';
			this.morph({
				'color': '#000000'
			});
		},
		blur: function() {
			this.style.color = '#ffffff';
			this.morph({
				'color': '#757575'
			});
			this.setProperty('value', this.getProperty('placeholder'));
		}
	});

	$('topsearch').setProperty('value', $('topsearch').getProperty('placeholder'));


	if ($('row1_col4_cell1'))
	{
		var hoogte = new Array($('row1_col1_cell1').offsetHeight,$('row1_col2_cell1').offsetHeight,$('row1_col3_cell1').offsetHeight,$('row1_col4_cell1').offsetHeight);
		hoogte.sort();
		hoogte_edit = hoogte[3];
		var stijl = hoogte_edit+'px';
		$('row1_col1_cell1').setStyle('height',stijl);
		$('row1_col2_cell1').setStyle('height',stijl);
		$('row1_col3_cell1').setStyle('height',stijl);
		$('row1_col4_cell1').setStyle('height',stijl);
	}

});
