var fDesc=new Array();
fDesc[1] = "famous heiress to your desktop, in a way maybe you have not seen before. And she is not alone. In many of the pictures she is accompanied by her also beautiful sister Nicky.";
fDesc[2] = "Multiple images and poses. All full screen - All high resolution - All sexy - All 100% Free!";
fDesc[3] = "include both sexy ladies in provocative dress and pose. So hot that we had to censor one image for public distribution.";
fDesc[6] = "price of one. You will be able to see both sisters posing and dressing in very provocative pictures. Enjoy these beautiful women doing their thing: just being sexy and pretty.";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}