$(document).ready( function() {
	//IEのopacity対策
    if(navigator.userAgent.indexOf("MSIE") != -1) {
        $('#fade img').each(function() {
            if($(this).attr('src').indexOf('.png') != -1) {
                $(this).css({
                    'filter': 'progid:DXImageTransform.Microsoft.AlphaImageLoader(src="' +
                    $(this).attr('src') +
                    '", sizingMethod="scale");'
                });
            }
        });
    }
	//innnerfade
	$('#fade').innerfade({
		speed: 500,
		timeout: 5000,
		type: 'sequence',
		containerheight: '130px'
	});
})

//FIXED CLOSE
$("#close").click( function(){
	$("#fixed").fadeOut(500);
})

