﻿$(document).ready(function(){
	// FAQ prepends
	$("#faq dt").prepend("Q: ");
	$("#faq dd p:first-child").prepend("<span style='font-weight:bold;font-style:normal;'>A: </span>");
	
	// Myths and Facts prepends
	$("#myths-facts dt").prepend("<span style='text-transform:uppercase;'>Myth: </span>");
	$("#myths-facts dd").prepend("<span style='text-transform:uppercase;font-weight:bold;'>Fact: </span>");
	
	// Last-child of li in #main-right bottom margin fixes
	$("#main-right li:last-child").css({marginBottom:"1.2em"});
});

