$(document).ready(function(){
	$('.commentlist li:odd').addClass('noBackground');
	
	$('#top input').attr('value', $('#top label').text());
	$('#top input').focus( function(){
		if( $(this).attr('value') == 'Search' ){
			$(this).attr('value', '');
		}
	});
	$('#top input').blur( function(){
		if( $(this).attr('value') == '' ){
			$(this).attr('value', 'Search');
		}
	});
});