/* ---------------------------------------------------------------
	
	MAIN.JS
		
--------------------------------------------------------------- */

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

/* each page function */
//	if(jQuery("body#PAGEID")[0]) {
//		/*PAGEID FUNCTION*/
//	};
	if($.browser.msie){
		$("label").each(function(){
			var tarId = $(this).attr("for");
			$(this).find("img").click(function(){
				$('#'+tarId).click();
			});
		});
	}
});