/*!
 *
 * JavaScript for Asset Management Partners
 * http://www.assetmanagementpartners.net/
 *
 * Copyright 2010, Screen Concept
 * http://www.screenconcept.ch
 *
 * @author Phil Schilter
 *
 */

$(document).ready(function(){
  
  /**************** 
   * Team site
   ****************/
  $(".team-iframe").fancybox({
    'width' : 600,
    'height' : 480,
    'autoScale' : false,
    /*'transitionIn' : 'none',
    'transitionOut' : 'none',*/
    'overlayOpacity' : 0.6,
    'type' : 'iframe'
    /*'titlePosition' : 'inside',
    'titleFormat' : function(title, currentArray, currentIndex, currentOpts) {
      return '<div id="my-fancybox-title"><a href="#" onClick="$.fancybox.close();">Close this window</a></div>';
    }*/
  });
  
  /**************** 
  * E-Mail Plugin
  ****************/
   
  $("a.email").each(function(i) {
    var text = $(this).text();
    var address = text.replace(" at ", "@");
    $(this).attr('href', 'mailto:' + address);
    $(this).text(address);
  });
  
});