$(document).ready(function() {	
	$('div.questions-container fieldset').each(function() {
		var headingBgColor = $('legend', this).css('background-color');
		var headingFontWeight = $('legend', this).css('font-weight');
		//alert(headingStyle);
		var heading = $('legend', this).remove().html();
		if(heading != null)
		    $(this).prepend('<div class="question-headings" style="background-color:'+ headingBgColor +'; font-weight:' + headingFontWeight + ';">' + heading + '</div>');
	});
});