function roundBox( box, topleft, topright, bottomleft, bottomright )
{
    var settings = 
	{
      tl: { radius: topleft },
      tr: { radius: topright },
      bl: { radius: bottomleft },
      br: { radius: bottomright },
      antiAlias: true
	}
    curvyCorners(settings, box);
}

/*establecer igual altura divs*/
function equalHDivs()
{
	a=$('.eqDiv:eq(0)').innerHeight();
	b=$('.eqDiv:eq(1)').innerHeight();
	if(b > a) a=b;
	$('.eqDiv').css('height', a+'px');
}

/***********************************************************/
// codigo  comun en archivos
function comun()
{

	
	
}

