/* ---------------------------------------------------------------
	
	MAIN.JS -- FOURDIGIT JavaScript BASAE FUNCTIONS
	Copyright (c) FOURDIGIT Inc. All Rights Reserved.
		
--------------------------------------------------------------- */

jQuery(document).ready(function(){
/* config - commentOut to Off */
//	cssBrowserSelector();
	initRollOvers();
//	enableFlash();
//	enablePNG ();
//	blankLogToGoogle();
	blankToPop();
	smoothScroll();

/* each page function */
	jQuery('p.fade').each(function(){
  		$('p.fade img').fadeIn(1200);
	});
});

function hideAndSeek (objId, objsclass) {
	$('p.fade img').css("display","none");
	$("div."+objsclass).css("display","none");
	$("div#"+objId).css("display","block");
	/*$("div#"+objId).fadeIn(1000);*/
	$('p.fade img').fadeIn(1200);
}