/* ---------------------------------------------------------------
	
	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*/
//	};
});

$(function(){
	$('.img-link').hover(
		function(){
			$(this).css("opacity",0.8);
		},
		function(){
			$(this).css("opacity",1);
		}
	);
	$('#redLink img').attr("alt", "");
});