
function showimg(imgName)
{
	document.images[imgName].width = 100;
	document.images[imgName].height = 100;
}

function hideimg(imgName)
{
	document.images[imgName].width = 50;
	document.images[imgName].height = 50;
}

$(document).ready(function()
{
  $("#infodarmowe").show(2000);
  $('a[rel*=facebox]').facebox();
  $("table.striped tr:nth-child(even)").addClass("evenrow");
});


