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

$(function(){
/* config - commentOut to Off */
	cssBrowserSelector();
	initRollOvers();
//	enableFlash();
	blankToPop();
	smoothScroll();
	
	$('#topBnrPv a').hover(
		function(){
			$(this).css("opacity", 0.9);
		},
		function(){
			$(this).css("opacity", 1);
		}
	);
	$('#bt-submit').hover(
		function(){
			$(this).css("background-position", "left bottom");
		},
		function(){
			$(this).css("background-position", "left top");
		}
	);
});
