$(document).ready(function() {
	
	//Get rid of all inline style tags
	$("*").attr("style", "");
	
	//Get rid of all css links
	$("#content link").remove();
	
	//Any table with inline bgcolor style is changed to match the body background
	$("table").attr("bgcolor", "#EAE8D8");
	$("table").attr("width", "");
	
	// Clear search box on focus	
	searchText = 'Address | WebID | Agent';
	
	$('#search input[type="text"]').attr('value', searchText);
	
	$('#search input[type="text"]').focus(function() {
		$(this).attr('value', '');
	});
	$('#search input[type="text"]').blur(function() {
		if ($(this).attr('value') == '') {
			$(this).attr('value', searchText);
		}
	});

});