$(document).ready(init);

function init()
{
	$(".topround").css("position","relative");
	$(".topround").append('<img src="/images/topleft.png" style="position: absolute; top: 0; left: 0;" />');
	$(".topround").append('<img src="/images/topright.png" style="position: absolute; top: 0; right: 0;" />');

	$(".round").css("position","relative");
	$(".round").append('<img src="/images/topleft.png" style="position: absolute; top: 0; left: 0;" />');
	$(".round").append('<img src="/images/topright.png" style="position: absolute; top: 0; right: 0;" />');
	$(".round:not(.producto:last .round)").append('<img src="/images/bottomleft.png" style="position: absolute; bottom: 0; left: 0;" />');
	$(".round").append('<img src="/images/bottomright.png" style="position: absolute; bottom: 0; right: 0;" />');

	

	$("#main > .listado_productos > .producto > .texto").fadeTo(1,"0.7");
}