$(document).ready(function(){ 
  $("#slider").easySlider({
    controlsBefore:	'<p id="controls">',
    controlsAfter:	'</p>',
    auto: true,
    continuous: true
  });
  $('a.email').each(function(){
	  e = this.rel.replace('/','@');
	  this.href = 'mailto:' + e;
	  $(this).text(e);
  });
  
  
  $('.thumbs .thumb').each(function(index){
    $(this).css({
		  marginLeft: -( $(this).width() - $(this).closest('li').width() )/2, 
		  marginTop:  -( $(this).height() - $(this).closest('li').height() )/2
	  });
	});

  $('#portfolioWeb > li').each(function(index){
    gallery_id = $(this).attr('rel');
    $('.gallery', $(this)).galleriffic('#thumbs_min_'+gallery_id, {
		  imageContainerSel:      '#gallery_'+ gallery_id
	  });
  });


});
