$.ajax({
url: "test.html",
cache: false,
success: function(html){
}
});
$(document).ready(function(){
$(".iframe").each(function(){
var that = $(this);
that.colorbox({
iframe:true, innerWidth:"90%", height:"90%",
onComplete: function() {
$("#cboxContent iframe").ready(function(){
$("#cboxContent").append('<a id="cboxFullScr" style="float: left;" href=' + that.attr("href") + '>full screen</a>');
});
}
});
});
});
var popup_h = $('div.manager').height();
var posTop = $(popup_h - $('#managers-list ul li').height())/2
popup_h.css('top': -posTop)