jQuery(function(){
	jQuery('#hcontents, #contents').fadeMover({'outSpeed':100,'inSpeed':50});
});

jQuery(function() {
	jQuery('#header h1, #gNavi li')
	.each(function(){
		jQuery(this).css('background')
	})
	.find('img').hover(
		function(){
			jQuery(this).stop().animate({'opacity' : '0'}, 100);
		},
		function(){
			jQuery(this).stop().animate({'opacity' : '1'}, 500);
		}
	);
});


jQuery(document).ready(function(){
    jQuery("#hgNavi ul li a, #hgNavi .twitter, #main a img, #sidebar .tocart, .toecguide").hover(function(){
       jQuery(this).fadeTo(150, 0.7);
    },function(){
       jQuery(this).fadeTo(300, 1.0);
    });
});

