var fDesc=new Array(); fDesc[0] = "The goal of this classic game of hearts is to keep your score low by picking up the least amount of heart suited cards. Pass unwanted cards. Win tricks. When it comes to free card games, think Hearts.
Compete with your friends to Get Rid of Your Hearts!
- Cards are played moving clockwise until four cards are on the table (known as a "Trick")
- The suit of the first card played in each trick is the lead suit, and the following three players MUST play a card of this suit unless they have none remaining.
- Whoever plays the highest valued card of the lead suit takes the trick including any Hearts or the Queen of Spades."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }