$(document).ready(function() 
{

$('#one_fresh').click(function() 
{
var showhide = $('.fresh-box', this).css('display');

if(showhide === 'none') {
  $(this).css('z-index', 999);
  $('span', this).fadeIn(500);
  $('.fresh-box', this).fadeIn(500, function() {
  //$('span', this).fadeIn(500);
  });
} else {

$('.fresh-box', this).fadeOut(1000);
$('span', this).fadeOut(500);
}

});





});


     
   
