
$(document).ready(function() {
  $("a[rel=open_in_modal]").click(function(e) {
    var href = this.href;
    $.ajax({
      url:      href,
      cache:    false,
      success:  function(html){
        if (href.indexOf('friends') > 0) {
          $.modal(html, {containerCss:{height:300}});
        } else
        {
         $.modal(html);
        };
        
      }
    });
    return false;
  });
});
