//------------------------------------------
// i-Tab
// © 2007 Kim & Dean - All Rights Reserved
// Written By:  Dean
//------------------------------------------

function itab_gallery_fix_buttons()
{
	var b = ['pin_button', 'edit_button', 'move_button', 'delete_button', 'report_button'];
	for (var i=0; i<b.length; i++)
	{
		try
		{
			var o = my_getbyid('itab-gal-button-'+b[i]);
			if (o)
			{
				o.innerHTML = o.innerHTML.replace(/&nbsp;/ig, '');
			}
		}

		catch(e){}
	}
}

function itab_gallery_change_comment_header(id, b)
{
	if (isNaN(id))
	{
		return false;
	}

	try
	{
		var l = my_getbyid('comment-header-left-'+id);
		var r = my_getbyid('comment-header-right-'+id);

		l.className = (b == false) ? 'posttop' : 'posttopborder';
		r.className = (b == false) ? 'posttop' : 'posttopborder';
	}

	catch(e){}
}