
var st701_questions = new Array();


					
		st701_questions[0] = new Array();
		st701_questions[0]["title"] = "Looking for Aprilia RS 125";
		st701_questions[0]["link"] = "http://cars.st701.com/questions/view/4825";
		st701_questions[0]["answers"] = "0";
		st701_questions[0]["user"] = "";
		st701_questions[0]["avatar"] = "http://cars.st701.com/img/shadow25x38.gif";
		st701_questions[0]["answer"] = "";
					
		st701_questions[1] = new Array();
		st701_questions[1]["title"] = "Re: Chevrolet Cruze 1.6 &#40;A&#41;";
		st701_questions[1]["link"] = "http://cars.st701.com/questions/view/4823";
		st701_questions[1]["answers"] = "0";
		st701_questions[1]["user"] = "";
		st701_questions[1]["avatar"] = "http://cars.st701.com/img/shadow25x38.gif";
		st701_questions[1]["answer"] = "";
					
		st701_questions[2] = new Array();
		st701_questions[2]["title"] = "looking for a 2nd  car";
		st701_questions[2]["link"] = "http://cars.st701.com/questions/view/4822";
		st701_questions[2]["answers"] = "0";
		st701_questions[2]["user"] = "";
		st701_questions[2]["avatar"] = "http://cars.st701.com/img/shadow25x38.gif";
		st701_questions[2]["answer"] = "";
	
			
	function st701_questions_render() {
		document.writeln('<div class="st701_questions_answers">');
		if (st701_questions) {
			for (var i=0; i < st701_questions.length; i++) {
				with(document) {
					writeln('<div class="st701_questions_answers_box">');
						writeln('<div class="st701_questions_answers_data1">');
						writeln('<strong>Q:</strong>&nbsp;<a target="_blank" href="' + st701_questions[i]['link'] + '">' + st701_questions[i]['title'] + '</a>');
						writeln('</div>');
						writeln('<div class="st701_questions_answers_data2">');
						if (st701_questions[i]['answer'] == '') {
							writeln('<strong>A:</strong>&nbsp;<a target="_blank" href="' + st701_questions[i]['link'] + '">Be the first to comment</a>');
						} else {
							writeln('<strong>A:</strong>&nbsp;' + st701_questions[i]['answer']);
						}
						writeln('</div>');
					writeln('</div>');
				}
			}
		}
		document.writeln("</div>");
	}
	
	st701_questions_render();
	