var slider_top_1_status = false;

$(document).ready(function () {
		setTimeout("toggle_toolbar()", 700);
});

function toggle_toolbar(){
	if(slider_top_1_status){
		$( "#slider_top1" ).animate( { marginTop: "-=20px" }, { queue: true, duration: 200 });
		$( "a#slider_arrows" ).text(" show " );
		slider_top_1_status = false;
	} else {
		$( "#slider_top1" ).animate( { marginTop: "+=20px" }, { queue: true, duration: 700 });
		$( "a#slider_arrows" ).text(" hide ");
		slider_top_1_status = true;
	}
}

function close_toolbar(){
	if(slider_top_1_status){
		$( "#slider_top1" ).animate( { marginTop: "-=50px" }, { queue: true, duration: 200 });
	} else {
		$( "#slider_top1" ).animate( { marginTop: "-=30px" }, { queue: true, duration: 700 });
	}
}


