

$(document).ready(function(){
	
	var bkg = ($('.win.body').css('backgroundImage'));
	$('.win.body').css('backgroundImage','none');
	
	$('.faq h4').each(function(){
		$('<a href="#" class="expand">'+$(this).text()+'</a>').insertAfter($(this));
		$(this).remove();
	});
	
	$('.faq .cnt').hide();
	$('.win.body').css('backgroundImage',bkg);

});


