// JavaScript Document
// This is for the styles I want to get on the fly 
// Hence the name of this doc
$("ul.dateList ul li:nth-child(1)").addClass("left");
$("ul.dateList ul li:nth-child(2)").addClass("right").css("margin-right", "8px");
$(".testimonial p:nth-child(1)").css({
	fontStyle: "italic",
	color: "#000"
});
$(".testimonial p:nth-child(2)").css({
	color: "#656565",
	paddingLeft: "12px"
});
