jQuery.noConflict();
(function($) {
	$(document).ready(function() {
		$('a[rel="tfe_overlay"]').each(function() {
			$(this).colorbox({href:function(){
				return $(this).attr('href') + '?type=20000';
			}, onComplete:function() {
				attachOverlayData($.fn.colorbox);
			}, rel:'nofollow', scrolling: false});
		});
	});
})(jQuery);

function attachOverlayData(colorbox) {
	jQuery('#cboxLoadedContent a[rel="tfe_overlay"]').each(function() {
		jQuery(this).bind('click', function(e) {
			e.preventDefault();
			jQuery.get(jQuery(this).attr('href') + '?type=20000', function(data){
				jQuery('#cboxLoadedContent').html(data);
				attachOverlayData(colorbox);
				colorbox.resize()
			});
		});
	});
}
