/* ------------------------------------------------------------
 * PROJECT        : Computer Recycling of Virginia, Inc.
 * FILENAME       : jqloads.js
 * ------------------------------------------------------------
 * DATE CREATED   : 25 Sep 2006
 * LAST UPDATED   : 30 Oct 2007
 * ------------------------------------------------------------
 * AUTHOR(S)      : Kevin Scholl (http://www.ksscholl.com/)
 * ------------------------------------------------------------ */

/* ------------------------------------------------------------
 * JQUERY PSEUDO-ONLOADS
 * ------------------------------------------------------------ */

$(document).ready(function(){

  // hide the quicknav blocks
	$("#qnAuction, #qnLinks, #qnNews, #qnSearch").hide();
													 
	// set input field actions	
	$("#srchTerms").toggleActive();
	
	// set up the sectional elements
	if ($("body").attr("className") != "Home") {
		while (RAN_NUM == 4) {
			RAN_NUM = (Math.round(Math.random()*(NUM_MSTHD_IMGS - 1))) + 1;
			}
		}
	RAN_IMG = "url(/images/hdr_pic_0" + RAN_NUM + ".jpg)";
	$("#masthead").css("backgroundImage",RAN_IMG);
	
	// form element alignments
	$("input[@type='radio']").addClass("radioBtn");
	$("input[@type='checkbox']").addClass("checkBox");

	});
