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

if (document.getElementById('q'))
{
	if ((parseInt(navigator.productSub)>=20020000) && (navigator.vendor.indexOf("Apple Computer")!=-1))
	{
		searchField = document.getElementById('q');
		searchField.setAttribute('type', 'search');
		searchField.setAttribute('results', '16');
		searchField.setAttribute('placeholder', 'Search');
		document.getElementById('searchLabel').style.display = 'none';
	}
}