//Mootools code for GetDean.com
/* mootols link nudge */
window.addEvent('domready',function() {
	
	/*Nudging effect for links*/
  $$('.nudges').addEvents({
    'mouseenter': function() { this.tween('padding-left',20); },
    'mouseleave': function() { this.tween('padding-left',0); }
  });
  
  /*Thumbnail effect for viewing thumbnails*/
  $$('div.sections-overlay').each(function(div){
	div.set('opacity',0);
	div.set('morph', {duration:'1000'});
	})
	$$('div.thumbnail-div').each(function(div){
		div.set('tween', {duration: '450'});
		div.addEvents({
			'mouseover': function(){
				$(this).tween('marginTop', '-10px');
				$(this).getElements('div.sections-overlay').each(function(d){
					d.morph({opacity: 1, backgroundPosition: "-40px 0px"});
				});
			},
			'mouseout': function(){
				$(this).tween('marginTop', '0px');
				$(this).getElements('div.sections-overlay').each(function(d){
					d.morph({opacity: 0, backgroundPosition: "0px -167px"});
				});
			}
		});
	
	});
});
