/* ThumbsHome 1.0 - 2011.04.19
/*
/* Created by Luca Pillonel
/* copyright www.oxima.ch
--------------------------------------*/

var ThumbsHome = new Class({
	
	initialize : function(){
		this.setBehaviour();
	},
	
	setBehaviour : function(){
		$$('#works-selection .work').each(function(work){
			var fx = new Fx.Tween(work, {property: 'marginTop', duration: 250, link: 'cancel'});
			var page = 'page_' + work.getElement('a').get('href').replace(urlController.options.pageURL, '').replace(urlController.options.extention, '');
			work.addEvents({
				mouseenter : function(){
					fx.start(0);
				},
				mouseleave : function(){
					fx.start(60);
				},
				click : function(e){
					e.preventDefault();
					workDetailController = new WorkDetailController(work);
				}
			}).addClass(page);
		});
	}	
});
