//*******************
function OpenClose(){
	Effect.toggle('sliderContent','blindr'); 
	return false
}

var t;
var t2;

function slideOut() {
	document.getElementById('sliderContent').style.display = 'block';
	new Effect.BlindDownFromRight('sliderContent');
	slideBack();
}

function slideBack() {
	t=setTimeout("new Effect.BlindUpFromRight('sliderContent');",5000);
}

function stopSlideBack() {
	clearTimeout(t);
	clearTimeout(t2);
}