$(document).ready(function(){
  // ------- Уголки -------
	$("#cont1").corner("round 10px").parent().corner("round 10px");
	$("#cont2").corner("round 10px").parent().corner("round 10px");
	$("#cont3").corner("round top 10px").parent().corner("round top 10px");
	$("#cont4").corner("round top 10px").parent().corner("round top 10px");
	$("#cont6").corner("round bottom 10px").parent().corner("round bottom 10px");
	$("#cont7").corner("round bottom 10px").parent().corner("round bottom 10px");
	$("#cont5").corner("round 10px").parent().corner("round 10px");
	$("#footer").corner("round 10px");
	$("#news").corner("round 10px").parent().corner("round 10px");
  // ------- Уголки -------
});


function turnOn(elem)
{
	elem.setAttribute('src', '/res/img/' + elem.getAttribute("id") + '_active.png');
}

function turnOff(elem)
{
	elem.setAttribute('src', '/res/img/' + elem.getAttribute("id") + '_inactive.png');
}

function turnMenuOn(elem)
{
	$('#menu-item-id-' + elem).addClass("menu-item-selected");
}

function turnMenuOff(elem)
{
	$('#menu-item-id-' + elem).removeClass("menu-item-selected");
}

function hideText(id, text)
{
	if (id.value == text)
		id.value = '';
}

function restoreText(id, text)
{
	//alert(id.value);
	if (id.value == '')
		id.value = text;
}
