// Post Meta.
function manageMeta(id) {
	var it=$(id);
	if (!it) return;
	var tg=it.getElement('.post-meta');
	var contactIn=it.getElement('h2 a');
	var contactOut=it.getElement('.title-meta');
	//
	var slide=new Fx.Slide(tg, {duration:200});
	slide.hide();
	contactIn.addEvent('mouseenter', function() {
		slide.enterInterval=setTimeout(function() {slide.slideIn()}, 200);
	});
	contactOut.addEvent('mouseleave', function() {
		clearTimeout(slide.enterInterval);
		setTimeout(function() {slide.slideOut()}, 350);
	});
}
window.addEvent('domready', function() {
	new SmoothScroll();
});
window.addEvent('load', function() {
	// - gReader links
	setTimeout(function() {
		$$('#greader a').forEach(function(it) {
			it.target='_blank';
		});
	}, 1000);
});
