function printThisPage(){
	window.print();
}

$(document).ready(function(){
	try {
		$("table.faq tr.answer").toggle();
		$("table.faq a").click(function() {
			$(this).parent().parent().next("tr.answer").slideToggle();
		});
		$(".dropshadow").wrap("<div class=\"img-shadow\"></div>");
	}catch(e){ alert(e); }
});
   

function openBrWindow(theURL,winName,features) { 
  window.open(theURL,winName,features);
}
 

