$(document).ready(function() {
		setFancyList();

	// Background for answers
		$('ol.fancyList li').hover(function(){
			$(this).addClass('hover');
		},function(){
			$(this).removeClass('hover');
		});

});

function setFancyList() {
		// answers
		var answers = new Array("a","b","c","d");
    // create styled lists
    $(".question ol li").each(function(i) {
				$(this).wrapInner('<div class="content">');
				$(this).prepend('<span class="top"></span>');
				$(this).append('<span class="bottom"></span>');
				$(this).find(".content").prepend("<span class='bullet'>"+(answers[i])+".</span>");
				
				var newHeight = ($(this).height() +17);
				$(this).find(".bullet").css("height", newHeight);
    });
    $(".question ol").addClass("fancyList");
}
