$(document).ready(function(){
	$('#iframe-agenda').adjustHeight();
	
	$.getPlugin(plugin.thickbox);
	$.getPlugin(plugin.lightbox,function(){ $('a[rel="lightbox"]').lightBox(); });
	$.getPlugin(plugin.bubble,function(){
		( $('body').attr('id')=='forum' )
			? $('.bubble-trigger').bubble({position:'left'})
			: $('.bubble-trigger').bubble();
	});

});
/**
  *	Adjust height of iframe to contents 
*/
$.fn.adjustHeight = function(){
	adjustHeight = function(e){
		var d = $( e.contentDocument || (e.contentWindow) ? e.contentWindow.document : null || null );	
		if(!d){return;}e=$(e);e.height(0);var h = d.find('html').height();e.height(h);
	};
	return this.each(function(){
		$(this).bind('load',function(){adjustHeight(this);});
		adjustHeight(this);
	});
};
