$(document).ready(function() {
  $("a.simplemodal").click(function(e) {
    e.preventDefault();
    url = this.href;
    alert($(this).width());
    $.modal('<iframe src="' + url + '" />', {overlayClose: true})
  });
});

