$(document).ready(function(){
	
	$('#toggle_button').click(function(){	
		$('#banner').slideToggle(500);
		toggle_button();
	});
	
});