/* ------------------------------------------------------------
 * PROJECT        : NBuy Student Products
 * FILENAME       : jqload.js
 * ------------------------------------------------------------
 * DATE CREATED   : 29 May 2008
 * LAST UPDATED   : 16 jun 2008
 * ------------------------------------------------------------
 * AUTHOR(S)      : Kevin Scholl (http://www.ksscholl.com/)
 * ------------------------------------------------------------ */
 
/* ------------------------------------------------------------
 * BASIC DECLARATIONS
 * ------------------------------------------------------------ */

$(document).ready(function(){

	// close any popup window when page unloads
	//	$(window).unload(function(){
	//		closePopWin(POPWIN);
	//		});

  $("#navSub ul li a").click(function(){
		// set active category tab
		$(this).parents("ul").find("li.active").removeClass("active");
		$(this).parents("li").addClass("active");
		// build subnav links
		buildLinks();
    // do not engage html link
		return false;
	  });
	
	$("#contentMain").css("height", $(window).height() - 244 + "px");

	});
