/* JSS Elements for NCAR/EOL
------BeginFile------ 
*/


function checkBrowser() {
	if (/Safari[\/\s](\d+\.\d+)/.test(navigator.userAgent)){ 
		changeSafariStyle();
	}
}

function changeSafariStyle() {
	document.getElementById('portal-personaltools').style.top = "46px !important";
	document.getElementById('portal-personaltools').style.left = "-23px !important";
}

/* This area calls the above functions for EVERY page load */
function pageLoadsToRun() {
	checkBrowser();
}
registerPloneFunction(pageLoadsToRun);

/* 
------EndFile------ 
*/
