/* This adds a class after every third list item to clear the height of the items */

$(document).ready(function(){
	$("ul#three-col li:eq(3)").addClass("new-row");
	$("ul#three-col li:eq(3)").before("<br style='clear: both;'")
	$("ul#three-col li:eq(6)").addClass("new-row");
	$("ul#three-col li:eq(6)").before("<br style='clear: both;'")
});