
	function removeMe( me ) {
		if($("animationdirector").removeObject) {
			$("animationdirector").removeObject( me );
		}
	}
	function registerMe( position, me ) {
		if($("animationdirector").registerObject) {
			$("animationdirector").registerObject( position, me );
		}
	}
	function changeMouseState( position, me, value ) {
		if($("animationdirector").mouseActive) {
			$("animationdirector").mouseActive( position, me, value );
		}
	}
	function verifyMe( position, me ) {
		check = false;
		if($("animationdirector").verifyObject) {
			check = $("animationdirector").verifyObject( position, me );
		}
		return check;
	}
	function animateMe( me ) {
		if( me ) {
			if($(me).animateMe) {
				$(me).animateMe();
			}
		}
	}
	function animationFinished( me ) {
		if( me ) {
			if($("animationdirector").animationFinished) {
				$("animationdirector").animationFinished( me );
			}
		}
	}
	function preloadFinished( me ) {
		if( me ) {
			if($("animationdirector").preloadFinished) {
				$("animationdirector").preloadFinished( me );
			}
		}
	}
	
	
	function setHeight( value ) {
		$('header').className = value;
	}