jQuery.noConflict();
var j$ = jQuery;


/* 00.Function - Debug
=========================================================== */

/* 01.Function - OnReady
=========================================================== */
j$(function () {

    //Mac 調整
    if (j$.os.name == 'mac') {
        j$('#header ul li').css({
            'background-position':'0 -1px'
        });
		
	    j$('#footer p').css({
            'font-size':'9px'
        });
    }	
	
	//ターゲットブランク
    j$("a.target_blank").click(function () {
        window.open(this.href);
        return false;
    });

    //ツイッター表示
    j$('#twitter').twitTicker({
        userName: 'BLUERIVERinc',
        numTweets: 5,
        headingText: "BLUERIVERinc",
        tFmtJp: true
    });
	
	if (j$("#top")[0]) {
	    j$(window).load(function () {
	        j$('#mainI').nivoSlider({
	            effect: 'fade',
	            slices: 15,
	            boxCols: 8,
	            boxRows: 4,
	            animSpeed: 900,
	            pauseTime: 5000,
	            startSlide: 0,
	            directionNav: false,
	            directionNavHide: true,
	            controlNav: false,
	            controlNavThumbs: false,
	            controlNavThumbsFromRel: false,
	            controlNavThumbsSearch: '.jpg',
	            controlNavThumbsReplace: '_thumb.jpg',
	            keyboardNav: false,
	            pauseOnHover: false,
	            manualAdvance: false
	        });
	    });
	}

});
