var topNormal = 200, topFull = 0;
var duracion = 700;
var transUp = Fx.Transitions.Cubic.easeOut;
var transDown = Fx.Transitions.Cubic.easeOut;

var fx = new Fx.Elements($('content'), {wait:false, duration:duracion, transition: transUp});
var fxs = {};	
var height = 0;
function notifyMe()
{
	setTimeout('getHeight()', 10);
	setTimeout('notify()', 20);
	//setTimeout('denotify()', 15000);
	}

function notify() {
	divTop= height-105;
	divTop= divTop+"px";
	document.getElementById('notify').style.top = divTop;
	b=document.getElementById('desc_notify');
	fx = new Fx.Elements(b, {wait:false, duration:duracion, transition: transUp});
	var o = {};   o[0]={ 'top': [topFull]};					   
	var ran = $random(0,100000);
	fxs[ran]=fx;
	b.setProperty("moving",ran);
	fx.start(o);
	}

function denotify() {
	b=document.getElementById('desc_notify');
	fx = new Fx.Elements(b, {wait:false, duration:duracion, transition: transDown});
	var o = {};	o[0]={ 'top': [topNormal]};
	b.setProperty("moving",1);
	var ran = $random(0,100000);
	fxs[ran]=fx;
	b.setProperty("moving",ran);						
	fx.start(o);
	}

function f_clientWidth() {
	return f_filterResults (
		window.innerWidth ? window.innerWidth : 0,
		document.documentElement ? document.documentElement.clientWidth : 0,
		document.body ? document.body.clientWidth : 0
	);
}
function f_clientHeight() {
	return f_filterResults (
		window.innerHeight ? window.innerHeight : 0,
		document.documentElement ? document.documentElement.clientHeight : 0,
		document.body ? document.body.clientHeight : 0
	);
}
function f_scrollLeft() {
	return f_filterResults (
		window.pageXOffset ? window.pageXOffset : 0,
		document.documentElement ? document.documentElement.scrollLeft : 0,
		document.body ? document.body.scrollLeft : 0
	);
}
function f_scrollTop() { 
	return f_filterResults (
		window.pageYOffset ? window.pageYOffset : 0,
		document.documentElement ? document.documentElement.scrollTop : 0,
		document.body ? document.body.scrollTop : 0
	);
}
function getHeight()
	{
		height = f_clientHeight();
		sheight= f_scrollTop();
		height = eval(height + sheight);

	}
function f_filterResults(n_win, n_docel, n_body) {
	var n_result = n_win ? n_win : 0;
	if (n_docel && (!n_result || (n_result > n_docel)))
		n_result = n_docel;
	return n_body && (!n_result || (n_result > n_body)) ? n_body : n_result;
}


