//  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// VIEW - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
//  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
function View() {
	if (typeof View.initialized == "undefined"){
		//
		View.prototype.Highlight = function(e) {
			
			//console.log('VIEW // e = '+e);
			if(!Prototype.Browser.IE) {
				/*	alert(navigator.appVersion);
	        		if (e.currentStyle && !e.currentStyle.hasLayout) {

	            		e.setStyle({zoom: 1});

	        		}
	    		}
*/
				//new Effect.Highlight(e);
				//Position.relativize(e);
				e.makePositioned();
				new Effect.Opacity(e, {duration:0.7, from:0.2, to:1});
			}
		};//stratAppli// - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
		//
		
		
	}	
}//View
