// -----------------------------------------------------------------------------------
//
// Sophie Casson
// Page developed by Ara Yazedjian
// -----------------------------------------------------------------------------------
/*--------------------------------------------------------------------------*/




/*--------------------------------------------------------------------------*/

// Establish CSS-driven events via Behaviour script
var myrules = {

	'body' :  function(el){
			Effect.Center('WindowBox');
		window.onresize = function(el){
			Effect.Center('WindowBox');
		}
	},

	a : function(element){
		element.onfocus = function(){
			this.blur();
		}
	}
		

};


// Add window.onload event to initialize
Behaviour.apply();
