$(document).ready(function(){

    $('#top-img').flash({ swf: 'public/images/default/top.swf', width: 868, height: 225 });

    $('#imgmap ol li a').hover(function () {

        $(this).css('background', 'url('+$(this).attr('rel')+') no-repeat center center');

    }, function () {

        $(this).css('background', 'none');

    });
   
});

