$(function(){
	$('form[@action*=search] input').focus(function(){
		if (this.value == this.defaultValue) this.value='';
	});
	$('form[@action*=search] input').blur(function(){
		if (this.value == '') this.value = this.defaultValue;
	});
	$('#content table th').find(':odd').addClass('even center');
	$('#content table th').find(':even').addClass('odd center');
	$('#content table').find('tr:first').addClass('first-child');
	$('#content table tr').find(':odd').addClass('even');
	$('#content table tr').find(':even').addClass('odd');
	$('#content table').find('tr:even').addClass('dark');
	
});

