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

$(function(){
/* config - commentOut to Off */
	cssBrowserSelector();
	initRollOvers();
//	enableFlash();
//	enablePNG ();
//	enableCSSPNG ();
	blankToPop();
	smoothScroll();
	
	$('#exampleGallery li a').hover(
		function(){
			$(this).css("opacity", 0.7);
		},
		function(){
			$(this).css("opacity", 1);
		}
		
	);
	
	$('#redLink').css({"position":"absolute","top":"0px","right":"0px"});
	$('#redLink img').attr("alt", "");
});
