var fDesc=new Array();
fDesc[1] = "her business running. Your task is to make sure she does all her work and provides the farm with money. You will have a place at the market where you can put all your food for sale.";
fDesc[2] = "airplanes, the improvement of the multiplayer support , including the possibility of two players flying a single airplane, and the occupation of the control tower. The 11.0 version brings some improvements and enhancements to the already successful flight simulator.";
fDesc[3] = "pre-designed history or can create your own history playing in the classical way. The game is a version of The Sims 2 optimized for laptops and lower-end desktop computers.";
fDesc[4] = "user interface including new buttons of browser quick start and mail client, SMS and address book applications. Wireless Manager provides control of connections, data using, information about messages and contacts.";
fDesc[5] = "trips and preparing holidays for the Sims. The expansion offers three different destinies in which the Sims can spend some days far away from their houses of their work, on holidays";
fDesc[6] = "restrictions and unlock Nokia, Samsung, Siemens, Maxon, NEC, Sony, Panasonic, Vitel, AEG / Telital, Alcatel cellphones.";
fDesc[7] = "pursue employment in five new careers that include dance, entertainment, intelligence, oceanography and architecture. There are ten hobbies included in the expansion pack and several new elements.";
fDesc[8] = "women. The pack adds songs by Jibbs, Keke Palmer, Kevin Michael, and NLT to the Pop and Hip Hop stations. The \"stuff pack\" also comes with three pre-made H&M stores.";
fDesc[9] = "furniture and decoration from the popular Swedish furniture chain IKEA, mainly concentrating on living rooms, bedrooms and home offices. It is the second stuff pack to feature products of a real-world company.";
fDesc[10] = "different reef tanks, with great backgrounds and a large variety of fish and corals. SimAQUARIUM can be customized and has great options.";
fDesc[11] = "messages accidentally deleted from your mobile phone sim card. This incredible application retrieves all deleted contact numbers, unreadable messages and corrupt phone book directory.";
fDesc[12] = "sim card including text messages, phone book numbers, SMS memory status, phone book memory status and any other kind of information.";
fDesc[13] = "computer, you can use this application to access the contents of the SIM cards. Dekart SIM Manager can read from and write to SIM cards. The main use you would give this application is to organize the contents of the card.";
fDesc[14] = "F-16 Multirole Fighter 1.0 sim is designed to provide you with the real life experience of flying this amazing aircraft. The Sim boasts of authentic lockheed approved sim model of the planes and the sim has been tested by none other than the companies F-16 test pilot";
fDesc[15] = "message services from inbox, outbox sent items and draft of your sim card. Tool fetches sim provider name & IMSI number";
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 = '...';
}
}