function doInitLoadMacCss(){
	var opt = navigator.userAgent.indexOf("Mac")!=-1	
	var browser = navigator.userAgent.indexOf("Safari")!=-1	
	var browser2 = navigator.userAgent.indexOf("Mozilla")!=-1	
	
	if( opt ){
		
		if(browser){
			if( $('#slider_images').length ){
				$('#slider_images').css( 'margin-top', '1px' );
			}
			if( $('.active_img').length ){
				$('.active_img').css( 'margin-top', '6px' );
			}
			
		}
		
		if(browser2){
			if( $('#menuItems').length ){
				$('#menuItems').css( 'margin-top', '1px' );
			}
		}
		if( $('#content').length ){
			$('#content').css( 'margin-top', '3px' );
		}
		
	}	
}


