// ##########################################
// #########  DATAGRID HIGHLIGHT  ###########
// ##########################################
var oPrevTd;
function changeBorder(oTd){
	oTd.className='dgLowLights';
	if (oPrevTd && oPrevTd!=oTd){
	oPrevTd.className='dgHighLigts';
	}
	oPrevTd = oTd;
}

function changeBorder2(oTd){
	oTd.className='dgHighLigts';
	if (oPrevTd && oPrevTd!=oTd){
		oPrevTd.className='dgLowLights';
	}
	oPrevTd = oTd;
}

// ###########################################

var selectedRow = null;
function Select(row)
{
	if (selectedRow != null)
	{
		selectedRow.style.backgroundColor = 'white';
		selectedRow.title = 'Click to highlight';
	}
		selectedRow = row;
	selectedRow.style.backgroundColor = '#fffacd';
	selectedRow.title = '';
}

function MouseOver(row)
{
	if (row != selectedRow)
	{
		row.style.backgroundColor = '#fffaf0';
		row.style.cursor = 'hand';
	}
}

function MouseOut(row)
{
	if (row != selectedRow)
	{
		row.style.backgroundColor = 'white';
	}
	else
	{
		row.style.backgroundColor = '#fffacd';
	}
	row.style.cursor = 'default';
}


// titleKimlericin   titleFirsatlar   titleUlasim
function menuOver(ids)
{
     document[ids].src =  'images/menu/' + ids + '2.gif';  
}

function menuOut(ids)
{
     document[ids].src =  'images/menu/' + ids + '.gif';  
}