function MoveCorners() {
	// move the corners for Safari only	
	var result = navigator.userAgent.indexOf("Safari");
	
	if (result != -1) {
		// alert(navigator.userAgent);		
		document.getElementById("left_corner").style.marginBottom = "-2px";
		document.getElementById("right_corner").style.marginBottom = "-2px";
	}
}

