$(function(){
    setInterval(function(){
        $('#time1').html($.exDate().toChar(
            'yyyy.mm.dd'
        ))
    },100)
	setInterval(function(){
        $('#time2').html($.exDate().toChar(
            'day'
        ))
    },100)
		
});
$(document).ready(function(){
    var ar = $('#toplist').children();
    ar.sort(function(a,b){
      var temp = parseInt( Math.random()*10 );
      var isOddOrEven = temp%2;
      var isPosOrNeg = temp>5 ? 1 : -1;
      return( isOddOrEven*isPosOrNeg );
    });
    $('#toplist').html(ar);
    $('#toplist').masonry({
	  itemSelector: '.box',
	  columnWidth: 10,
	  isAnimated: true
	});
	$("#main a img")
		.hover(
		function() {
		  $(this).fadeTo(200, 0.5);
		},
		function() {
		  $(this).fadeTo(500, 1.0);
		}
  　);
  });

$(function(){
	$('.bigger').biggerlink();
	$('#info').jScrollPane({scrollbarWidth:7});
     $("#gotop a").click(function(){
     $('html,body').animate({ scrollTop: $($(this).attr("href")).offset().top }, 'normal','easeOutQuint');
     return false;
     })
});
$('.r_box').corner("round 5px");
