/*--------------------------------------------------------------------------*
 *  
 *  roru
 *  
 *--------------------------------------------------------------------------*/

$(function() {
	    var num = 1;
	    $('ul#gnavi li')
	    .each(function(){
	        $(this).css('background', 'url(/main/wp-content/themes/sakura/common/images/gnavi0'+num+'.gif) no-repeat 0px -41px')
	        num++;
	    })
	    .find('img').hover(
	        function(){ 
	            $(this).stop().animate({'opacity' : '0'}, 500); 
	        },
	        function(){
	            $(this).stop().animate({'opacity' : '1'}, 1000);
	        }
	    );
	});

$(function(){
     $('h2.top_h204').click(function(){
         window.location=$(this).find("a").attr("href");
         return false;
    });
});

