$(document).ready(function(){
	
	/* display everything for the pngfix, then turn it back off */
	$('.free-gift-blurb').css({display: 'block'});
	pngfix('.free-gift-on, .free-gift-outer, .free-gift-heading, .free-gift-image img');
	$('.free-gift-blurb').css({display: ''});
	
	$('.free-gift-heading').toggle(function(){
		$(this).next('div.free-gift-blurb').slideDown('fast');
		$(this).parent('.free-gift').addClass('free-gift-on');
		}, function(){
		$(this).next('div.free-gift-blurb').slideUp('fast');	
		$(this).parent('.free-gift').removeClass('free-gift-on');
	});	
});

