jQuery(document).ready(
function() {

jQuery('#seihin').cycle({ 
fx:     'fade',
speed:   5000, 
timeout: 2000,
delay:  0,
nowrap:  1
});


jQuery("a[href^=#]").click(function() {  
    var hash = this.hash;  
    if(!hash || hash == "#")  
        return false;  
    jQuery(jQuery.browser.safari ? 'body' : 'html')  
        .animate({scrollTop: jQuery(hash).offset().top}, 800, "swing");  
    return false;  
});

});

