
$(document).ready(function() {
	//debug bar
	$("#debug a.close").click(function() {
		$("#debug").addClass('hidden');
	});

	//i_utils.js
	CheckIframe();
	mapBaseActions();
	
	/*
	$("ul.authors_gallery li img").each(function(){
		var wys = parseInt($(this).height());
		if (wys<100) {
			wys = 8 + (100 - wys)/2;
			$(this).css('margin-top',wys+'px');
		}
	});
	
	$("ul.authors_gallery2 li img").each(function() {
		var wys = parseInt($(this).height());
		if (wys<100) {
			wys = 21 + (100 - wys)/2;
			$(this).css('margin-top',wys+'px');
		}
	});
	*/
	
});

