/* ------------------------------------------------------------
 * PROJECT        : Dare County Boat Builders Foundation
 * FILENAME       : jqload.js
 * ------------------------------------------------------------
 * DATE CREATED   : 24 Nov 2008
 * LAST UPDATED   : 28 Jan 2009
 * ------------------------------------------------------------
 * AUTHOR(S)      : Kevin Scholl    (http://www.ksscholl.com/)
 *                : Aaron Kuzemchak (http://www.kuzemchak.net)
 * ------------------------------------------------------------
 * NOTE(S)        : 
 * ------------------------------------------------------------ */
 
$(document).ready(function(){
													 
	// close open popups on window unload
  $(window).unload(function(){
		closePopWin(POPWIN);
		});
	
	// remove bottom margin on last child element(s)
  $(""
		+ "div:last-child,"
		+ "form:last-child,"
		+ "img:last-child,"
		+ "li:last-child,"
		+ "ol:last-child,"
		+ "p:last-child,"
		+ "table:last-child,"
		+ "ul:last-child,"
		+ "").css("margin-bottom","0");
  $(""
		+ "p:last-child,"
		+ "").css("border-bottom","0").css("padding-bottom","0");

	// datatable
	$("table.dataTable tbody").each(function(){
		$("tr:nth-child(even)").addClass("alt");
		$("tr:last-child").addClass("lastRow");
		$("tr").hover(
		  function() {$(this).addClass("over"); },
			function() {$(this).removeClass("over"); }
			);
		$("tr.totals").css("background", "#F5F5F5").prev("tr").find("td").css("border-bottom-color", "#999");
		});
	
	// border alterations
	$("div#fullnav ul li ul li:last-child").css("border-bottom-color","#333");
	$("div#content div.colRight ul li:last-child").css("border-bottom","0");
	
	// margin alterations
	$("div#content ul.gallery li:nth-child(5n)").css("margin-right","0");

});

/* ------------------------------------------------------------
 * JQUERY PLUGINS
 * ------------------------------------------------------------ */

