function faq_showQuestion(id) {
	if(document.getElementById('faq-question-'+id).style.display == "none") {
		document.getElementById('faq-question-'+id).style.display="block";
				
		document.getElementById('q'+id).style.background="url(http://www.shuttvr.com/version2/wp-content/themes/shuttvr/img/faq-minus.png) no-repeat left center";
		
		
	} else {
		document.getElementById('faq-question-'+id).style.display="none";
				document.getElementById('q'+id).style.background="url(http://www.shuttvr.com/version2/wp-content/themes/shuttvr/img/faq-plus.png) no-repeat left center";
		
	}
}
