/**
 * init.js
 */

$(function(){
/* config - commentOut to Off */
	cssBrowserSelector();
	initRollOvers();
	blankToPop();
	smoothScroll();
	// IE6 Alert
	if( $.browser.msie && $.browser.version < 7 ) alert("ご使用のブラウザでは当サイトを最適な状態で閲覧できません。\n最新のバージョンもしくは他のブラウザをご使用下さい。");
	// gNav
	var ie = !-[1,];
	$('#gNav li:not(.on) a').hover(
		function(){ $(this).parent('li').stop(true,true).animate(ie ? {backgroundPositionX:"225px"} : {backgroundPosition:"225px"}, {duration:200}); },
		function(){ $(this).parent('li').stop(true,true).animate(ie ? {backgroundPositionX:"240px"} : {backgroundPosition:"240px"}, {duration:200}); }
	);
	// f_aahover
	$('img.f_ahover, .f_ahoverList img').hover(
		function(){ $(this).css("opacity", 0.7) },
		function(){ $(this).css("opacity", 1) }
	);
});

// headerPosition
$(window).bind('load resize', function(){
	if( $(window).height() < 680 || $(window).width() < 940 ) $('#header').css("position", "absolute");
	else $('#header').css("position", "fixed");
});

// pageTop
$(window).scroll(function(){
	$('#pageTop').each(function(){
		var top = $(window).scrollTop();
		if(top > 100) $(this).fadeIn();
		else $(this).fadeOut();
	});
});
