/*animete*/
$(function(){
    $(".game").animate( {opacity: 0}, 1000 );
	$(".game").animate( {opacity: 1}, 1000 );
});

/*scroll*/
$(function(){
     $(".scroll").click(function(){
     $('html,body').animate({ scrollTop: $($(this).attr("href")).offset().top }, 'slow','swing');
     return false;
     })
});

/*twitter*/
$(function(){ 
	$('#twitter').twitter('mefilas_inc', { 
        each_line: '<li>%text%</li>'
    }); 
}); 

/*rollover*/
$(function(){
     $('a img').hover(function(){
        $(this).attr('src', $(this).attr('src').replace('_off', '_on'));
          }, function(){
             if (!$(this).hasClass('currentPage')) {
             $(this).attr('src', $(this).attr('src').replace('_on', '_off'));
        }
   });
});

/*scroll*/
/*
$(function(){
	$('.scroll-pane').jScrollPane();
});
*/
