/*
$(function(){
	$("div#all").gradient({
		from:      'e6d8d7',
		to:        'FFFFFF',
		direction: 'horizontal'
	})
})
*/
$(function(){
	$("div#header").gradient({
		from:      '6e2010',
		to:        '000000',
		direction: 'horizontal'
	})
})
$(function(){
	$("div#footer").gradient({
		from:      '000000',
		to:        '6e2010',
		direction: 'horizontal'
	})
})
$(function(){
	$("div#blog").gradient({
		from:      'ffffff',
		to:        'e2d0cf',
		direction: 'horizontal',
		length: 100,
		position: 'bottom'
	})
})

$(function(){
	$("#top_flash, #blog, .banner_menu3, #rosso_logo").dropShadow({
		left:  5,
		top:    -1,
		opacity: 0.3
	})
})


/* メニューバナー画像の切り替え*/
$(document).ready(function(){
        $('.btn_img').mouseover(function() {
            var src = $(this).attr('src');
            $(this).attr('src', src.replace("_off", "_on"));
        });
        $('.btn_img').mouseout(function() {
            var src = $(this).attr('src');
            $(this).attr('src', src.replace("_on", "_off"));
        });
    });

