function toggleFront(){
	document.getElementById("one").style.display = "";
	document.getElementById("two").style.display = "none";
	document.getElementById("front_of_card").style.display = "";
	document.getElementById("back_of_card").style.display = "none";
	
}

function toggleBack(){
	document.getElementById("one").style.display = "none";
	document.getElementById("two").style.display = "";
	document.getElementById("front_of_card").style.display = "none";
	document.getElementById("back_of_card").style.display = "";
}


var Quotation=new Array() 


Quotation[0] = "<div class='tip_head'>LIMIT</div><div class='tip_subhead'>YOURSELF</div><p>Give yourself a spending limit for each week.</p>";
Quotation[1] = "<div class='tip_head'>BUY</div><div class='tip_subhead'>USED TEXTBOOKS</div><p>You're just going to sell them back at the end of the term.</p>";
Quotation[2] = "<div class='tip_head'>FIND</div><div class='tip_subhead'>FREE MONEY</div><p>Keep an eye out for free money. Apply for scholarships.</p>";
Quotation[3] = "<div class='tip_head'>STASH</div><div class='tip_subhead'>YOUR CASH</div><p>Every time you get paid, stash at least 10% of it away. </p>";
Quotation[4] = "<div class='tip_head'>CREATE</div><div class='tip_subhead'>A SIMPLE BUDGET</div><p>Give free budgeting sites a shot. </p>";
Quotation[5] = "<div class='tip_head'>FIND</div><div class='tip_subhead'>A JOB</div><p>Get a part-time job. Check out college work-study programs.</p>";
Quotation[6] = "<div class='tip_head'>BUILD</div><div class='tip_subhead'>AN EMERGENCY FUND</div><p>You can save yourself a lot of money and heartache by staying out of debt.</p>";
Quotation[7] = "<div class='tip_head'>FREE</div><div class='tip_subhead'>ENTERTAIMENT</div><p>Don't miss free and cheap entertainment on campus.</p>";
Quotation[8] = "<div class='tip_head'>ASK</div><div class='tip_subhead'>FOR A DISCOUNT</div><p>Many businesses offer a student discount. And it never hurts to ask for it.</p>";
Quotation[9] = "<div class='tip_head'>TRACK</div><div class='tip_subhead'>YOUR SPENDING</div><p>Use your bank's online service to keep track of your accounts.</p>";
Quotation[10] = "<div class='tip_head'>SAVE</div><div class='tip_subhead'>YOUR RECEIPTS</div><p>Invest in a cheap folder or grab an envelope and keep your receipts in it. </p>";
Quotation[11] = "<div class='tip_head'>ASK</div><div class='tip_subhead'>FRIENDS AND FAMILY</div><p>Get things for free if you can. Ask your friends and family for items first.</p>";
Quotation[12] = "<div class='tip_head'>FIX</div><div class='tip_subhead'>YOUR BUDGET</div><p>Stuff happens. If you bust your budget on something you really want to do this week, make up for it next week.</p>";
Quotation[13] = "<div class='tip_head'>SPLIT</div><div class='tip_subhead'>THE BILL</div><p>Ordering out for food can be expensive. Try to split a pizza to help cut down on the cost.</p>";
Quotation[14] = "<div class='tip_head'>SEARCH</div><div class='tip_subhead'>FOR DEALS</div><p>Check out the local thrift stores. You can get lamps, pictures, and sometimes gently used furniture very cheaply.</p>";
Quotation[15] = "<div class='tip_head'>SEARCH</div><div class='tip_subhead'>FOR DEALS</div><p>Drop in on the Dollar Store. Many items are all cheap and readily available.</p>";
Quotation[16] = "<div class='tip_head'>LIMIT</div><div class='tip_subhead'>YOURSELF</div><p>Set your own credit line. Just because you have a credit card with a $2,000 credit line doesn't mean you have to spend $2,000.</p>";
Quotation[17] = "<div class='tip_head'>INVEST</div><div class='tip_subhead'>WISELY</div><p>If you're looking for an investment vehicle, besides a saving account, try a Roth IRA.</p>";
Quotation[18] = "<div class='tip_head'>BUILD</div><div class='tip_subhead'>SOLID CREDIT</div><p>Use credit cards wisely because this is a chance to establish a solid credit history. Watch the interest rates.</p>";
Quotation[19] = "<div class='tip_head'>SEARCH</div><div class='tip_subhead'>FOR DEALS</div><p>wise with spending and saving: Don't spend a dollar to save a dime.</p>";
Quotation[20] = "<div class='tip_head'>SAVE</div><div class='tip_subhead'>STARTING NOW</div><p>The sooner you start, the more you can save. Open a savings account now.</p>";
Quotation[21] = "<div class='tip_head'>STAY</div><div class='tip_subhead'>ON TRACK</div><p>Pay your bills on time or you'll get stuck with a late fee.</p>";
Quotation[22] = "<div class='tip_head'>LIMIT</div><div class='tip_subhead'>YOURSELF</div><p>Set a limit on entertainment. Hitting up the ATM for another fistful of twenties is easy &ndash; and guaranteed to deplete your bank account</p>";
Quotation[23] = "<div class='tip_head'>MAKE</div><div class='tip_subhead'>A BUDGET</div><p>Make a budget. At the start of the month, estimate how much money you'll receive and decide where it needs to go.</p>";
Quotation[24] = "<div class='tip_head'>GUARD</div><div class='tip_subhead'>VITAL STATS</div><p>Don't give out your info except to known and trusted sources.</p>";
Quotation[25] = "<div class='tip_head'>USE</div><div class='tip_subhead'>YOUR STUDENT ID</div><p>Take advantage of campus activities. There's always something to do. Get the most from your student ID!</p>";
Quotation[26] = "<div class='tip_head'>AVOID</div><div class='tip_subhead'>IMPULSE BUYS</div><p>When you want to buy something, ask yourself \"Do I need it?\" If you think you do, then wait.</p>";
Quotation[27] = "<div class='tip_head'>SPEND</div><div class='tip_subhead'>LESS THAN YOU EARN</div><p>Don't earn much? Then don't spend much.</p>";
Quotation[28] = "<div class='tip_head'>WATCH</div><div class='tip_subhead'>YOUR HEALTH</div><p>Stay active. A healthy body costs far less to maintain than an unhealthy body.</p>";
Quotation[29] = "<div class='tip_head'>LIVE</div><div class='tip_subhead'>WITHOUT A CAR</div><p>Stick close to campus. Learn to use public transportation. Find a friend who has a car.</p>";




var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
