$(document).ready(function() {
	$("table tr:eq(0)").addClass("header-row");
	$("table tr:odd").addClass("odd");
	$("table tr:even").addClass("even");
	$(".search-button").attr('value', '');
	
	var img_of_p = $("#content .NewsSummarySummary p img");
	if(img_of_p.length) {
		$(img_of_p).parent().remove();
	}
});
