﻿// JavaScript Document
function google() {
                  var search = Math.floor(Math.random()*10);
				   var google = new Array(
								  "http://www.google.com/search?client=safari&rls=en&q=cars&ie=UTF-8&oe=UTF-8",
								  "http://www.google.com/search?client=safari&rls=en&q=window+treatments&ie=UTF-8&oe=UTF-8",
								  "http://www.google.com/search?client=safari&rls=en&q=paint&ie=UTF-8&oe=UTF-8",
								  "http://www.google.com/search?client=safari&rls=en&q=home+repairs&ie=UTF-8&oe=UTF-8",
								  "http://www.google.com/search?client=safari&rls=en&q=carpet&ie=UTF-8&oe=UTF-8",
								  "http://www.google.com/search?client=safari&rls=en&q=pets&ie=UTF-8&oe=UTF-8",
								  "http://www.google.com/search?client=safari&rls=en&q=vacations&ie=UTF-8&oe=UTF-8",
								  "http://www.google.com/search?client=safari&rls=en&q=cruises&ie=UTF-8&oe=UTF-8",
								  "http://www.google.com/search?client=safari&rls=en&q=news&ie=UTF-8&oe=UTF-8",
								  "http://www.google.com/search?client=safari&rls=en&q=entertainment&ie=UTF-8&oe=UTF-8");
				  window.open(google[search], target="_self");
}

