jQuery(function(){

/*require*/
	cssBrowserSelector();
	initRollOvers();
	enableFlash();
//	enablePNG ();
//	enableCSSPNG();

/*config*/
	smoothScroll();

/*each page function*/
if(jQuery("#topInfo")[0]) {
    var counter = 1;
    $('#topInfo li').each(function(e){
        if(counter){
            this.className = "info01";
            counter = 0;
        } else {
            this.className = "info02";
            counter = 1;            
        }
    })
};

if(jQuery(".reinput")[0]) { reInput('checkSheet'); }
});

/*function hideAndSeek () {
    if {
        showTopInfo();
    }else{
        showInnerInfo();
    }
}*/
function showTopEco () {
	$("#topEco").each(function(){
		$(this).fadeIn();
	});
	$("#innerEco")[0].style.display= "none";
}
function showInnerEco () {
	$("#innerEco").each(function(){
		$(this).fadeIn();
	});
	$("#topEco")[0].style.display= "none";
}


