/**
 * javascript for index
 *
 * @copyrigth toneri.
 *
 */

$(function() {
    
    // body.top
    $('div.part').hover(
        function() {
            $(this).css('background-color', '#DDDDDD');
        },
        function() {
            $(this).css('background-color', 'transparent');
        }
    );
    
    
    // recommend
    $('.icon img[src$=".png"]').pngfix();
});

