$(document).ready(function() {//js that's not executed until the page loads
	//if h2 follows h1, remove the gap between them
	$("h1 + h2").css("margin-top", "5px");
	//change bullet color
	$("ul li").wrapInner("<span class='bluebullets'><\/span>");
	//append the corner divs to boxes to make ie rounded corners
	$("<div class='tl'><\/div><div class='tr'><\/div><div class='bl'><\/div><div class='br'><\/div>").appendTo('.box');
	$("<div class='tl'><\/div><div class='tr'><\/div><div class='bl'><\/div><div class='br'><\/div>").appendTo('.answer');
});//end document ready function

