

jQuery(function($){
	  var timer = setTimeout( showDiv, 5000);
	  function showDiv() {
		$('#akcija')
			.stop()
			.fadeIn("fast");
		$('.closeButton').fadeIn("slow");
	  }		

	 $('.closeButton').click(function () {
      $('#akcija').fadeOut("slow");
	  $('.closeButton').fadeOut("def");
	  $('#sound').replaceWith();
    });
});		 
	 