
	$(document).ready(function(){
		initSearchResults();
	});
	
	function initSearchResults(){
		var i = 0;
		$(".google-results").children("table").each(function(){
			if (i == 0 || i == 1)
			{
				$(this).remove();
			}
			i++;
		});
		
		var i = 0;
		$("div.n table").children().children().children().each(function(){
			if (i == 0)
			{
				$(this).remove();
			}
			i++;
		});
		
	}
