$(function(){
    $('.right').fadeIn(2000);
    //$(".overview_fame").easySlider(); 
});

$(document).ready(function() {
	$('.overview a, .overview_last a').hover(function() {
		$(this).animate({ paddingLeft: 10 + 'px' }, 200);
	}, function() {
		$(this).animate({ paddingLeft: 0 }, 200);
	});
});


