$(document).ready(function(){
	$(".strelki").click(function(){
		if ($("#baner").is(":hidden")) {
		$("#baner").show("slow");
		$(this).hide();
		} else {
        $("#baner").hide();
      }
	});		


	$("#baner").click(function () {
		$(this).hide();
		$(".strelki").show();

	});
});
