function _(s) {
	if (typeof(this.i18n)!='undefined' && this.i18n[s]) {
		return this.i18n[s];
	}
	return s;
}

$(document).ready(function() {	
	$('body', 'html').css('overflow', 'hidden');
	$(".scrollable").scrollable({ vertical:true, mousewheel: true, wheelSpeed: 120, speed: 0 });
	$('span.design').mailto({'address':'maly.mushroom', 'domain':'gmail', 'extension':'com'});

	$('#projects').children().mouseenter(function() {
		var self = this;
		self.isOver = true;
		setTimeout(function(){
			if (self.isOver) {
				$(self).find('div.image.thumb').fadeIn(400);
				self.isOver = false;
			}
		}, 400);		
	});
	$('#projects').children().mouseleave(function() {
		var self = this;
		self.isOver = false;
		$(self).find('div.image.thumb').fadeOut(400, function() {$(this).css('display','none');});		
	});
});	
