// JavaScript Document

function showFaq(trgt){

	document.getElementById("faq").style.display = "block";
	switch(trgt){
	case 'a':
	document.getElementById("faq").innerHTML ='<a href="javascript:hideFAQ()" class="faqL">close FAQ</a><h2>What is a Futon?</h2><p><strong>“Futon”</strong> is the term used by Americans to refer to a convertible bed system. The futon is derived from a traditional Japanese bedding system. The Japanese use the word shikibuton, meaning mattress. Futons functions as a sofa during waking hours and can convert to a bed for a sleeping space. A futon can be a bed, sofa, or chair, providing a convenient and comfortable space for sitting or sleeping.</p><p>Futon mattresses are designed to be easily folded and stored away. Modern futon mattresses offer a wide variety of filling and support structures equal to conventional bed mattresses. The traditional mattress is commonly stuffed with cotton batting, and are available in a wide range of color, sizes, and material. Futon enthusiasts rave about the excellent back support provided by the futon and  appreciate the fact that a futon can be easily moved anywhere in a dwelling.</p>';
	break;
	
	case 'b':
		document.getElementById("faq").innerHTML ='<a href="javascript:hideFAQ()" class="faqL">close FAQ</a><h2>Space Saving</h2><p>Space-Saving futons make any room bigger. Sofa by day, bed by night - versatile and functional futon (foo-tahn) sofa-sleepers are ideal for providing extra room or as a primary sofa or bed anywhere in your home.</p><p>Turn your living room into a sleeping area for guests and return to an open enviornment in the morning.</p><p>Cramped Bedroom? A futon allows you to open the room up and provide a comfortable sitting area that easily converts to a bed at night.</p><p>Comfort, simplicity and space-saving efficiency are qualities that appeal to young and old alike. </p>';
	
	break;
	
	
	case 'c':
		document.getElementById("faq").innerHTML ='<a href="javascript:hideFAQ()" class="faqL">close FAQ</a><h2>High Tech Comfort?</h2><p>Simple frames convert effortlessly. Futon frames use no complicated mechanisms like traditional sleepers, and change from sofa to bed with ease. Some can also be made into a chaise lounge. Available in many different styles from traditional to contemporary, futon frames also come in a variety of materials and finishes such as hardwoods, exotic woods and high-tech metals. Accessories such as tables, screens and lamps create beautiful rooms.</p><p>Modern futons are made with high materials and offer many seating and cover options such micro fiber, leather, and high end fabrics</p><p>Futons offer multiple mattress choices, some lighter, others more "bed-like,". Some futons now even have materials once designed for use in outer space.<p> ';
	
	break;
	case 'd':
		document.getElementById("faq").innerHTML ='<a href="javascript:hideFAQ()" class="faqL">close FAQ</a><h2>Style to suit your space</h2><p>Protective covers make redecorating easy.</p>Decorative futon covers slip over and protect your futon mattress, and can be easily removed and washed or dry cleaned. Prints, solids and hand-painted designs are available in a variety of durable fabrics. Redecorating has never been so easy or economical - simply change the inexpensive cover for whole new look.</p><p><strong>Quality unfolds at an affordable price!</strong></p><p>A quality-made, durable futon is an excellent value - it\'s considerable less expensive than a standard mattress or convertible sofa, and is available in a range of styles to fit any budget.</p>';
	break;
	}
	
	
}

function hideFAQ(){
		document.getElementById("faq").innerHTML ='<a href="javascript:hideFAQ()" class="faqL">close FAQ</a>';
	document.getElementById("faq").style.display = "none";
	
}
