 /**
 * Safari Search Field
 * Replaces the search text input field with the really pretty one in Safari
 */

if (document.getElementById('sbi'))
{
	if ((parseInt(navigator.productSub)>=20020000)&&(navigator.vendor.indexOf("Apple Computer")!=-1))
	{
		searchField = document.getElementById('sbi');
		searchField.setAttribute('type', 'search');
		searchField.setAttribute('autosave', 'popsyn');
		searchField.setAttribute('results', '10');
		searchField.setAttribute('placeholder', 'Search this site');
	}
}
