//  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// VIEW - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
//  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
function View() {
	if (typeof View.initialized == "undefined"){
		//
		// OVER WORK
		View.prototype.overWork = function() {
			Effect.Appear('menuA', {duration: 0.5, queue: {position:'end', scope: 'menuAscope', limit:2}});		
			$('menuAtitre').setStyle({height: '50px'});
		};//overwork// - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
		//
		// OUT WORK
		View.prototype.outWork = function() {
			Effect.Fade('menuA', {duration: 0.5, queue: {position:'end', scope: 'menuAscope', limit:2}});		
			$('menuAtitre').setStyle({height: '15px'});
		};//outwork// - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
		//
		// OVER TEXTS
		View.prototype.overTexts = function() {
			Effect.Appear('menuB', {duration: 0.5, queue: {position:'end', scope: 'menuBscope', limit:2}});
			$('menuBtitre').setStyle({height: '60px'});			
		};//overTexts// - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
		//
		// OUT TEXTS
		View.prototype.outTexts = function() {
			Effect.Fade('menuB', {duration: 0.5, queue: {position:'end', scope: 'menuBscope', limit:2}});
			$('menuBtitre').setStyle({height: '15px'});
		};//outTexts// - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
		//
		// OVER EXHIB
		View.prototype.overExhib = function() {
			Effect.Appear('menuC', {duration: 0.5, queue: {position:'end', scope: 'menuCscope', limit:2}});
			$('menuCtitre').setStyle({height: '35px'});
		};//overExhib// - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
		//
		// OUT EXHIB
		View.prototype.outExhib = function() {
			Effect.Fade('menuC', {duration: 0.5, queue: {position:'end', scope: 'menuCscope', limit:2}});
			$('menuCtitre').setStyle({height: '15px'});
		};//overExhib// - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
		//
		
		
		
		
		
		
		
		
	}	
}//View

