 $(document).ready(function(){
	   // jquery code
	   $("dd").hide();
	   $("dt").click(function(){
			var str = $(this).children(".subheader_faq").html();
			$(this).next("dd").toggle();
			if (jQuery.browser.msie && jQuery.browser.version < 7) { // These lines are for iepngfix
				document.getElementById('divContentMid').style.background='none';  
				document.getElementById('divContentMid').style.background='url(images/interior_content_mid.png)'; 
			}
			if (str == "\u25bc") {
				$(this).children(".subheader_faq").html("&#9650;");
				str = $(this).children(".subheader_faq").html();
				}
			else 
			{
				$(this).children(".subheader_faq").html("&#9660;");
				str = $(this).children(".subheader_faq").html();
				}
	   }); 
 });
