jQuery.noConflict();
(function($) { $(function() {

//*****************************************************************************************************
// Collapse Down Vertical Navigation
//*****************************************************************************************************
$(".expanded-list").hide();
$("#current").show();
$(".sublist-parent > a").click(function() {
	$(this).parent().siblings(".sublist-parent").
		add($(this).parent().find(".sublist-parent")).
		find("a.active").removeClass("active").
		end().find(".expanded-list:visible").slideUp("fast");
	$(this).toggleClass("active").blur().next().slideToggle("fast");
	return false;
});

//*****************************************************************************************************
// FAQs
//*****************************************************************************************************
var answerElement, answerElementS;
$(".question a").toggle(function() {
	answerElement = $(this).parents(".question").next(".answer");
	answerElement.show();
	return false;
}, function() {
	answerElement.hide();
	return false;
});
$("#view-all-answers").toggle(function() {
	answerElementS = $(".faq-unit .answer");
	answerElementS.show();
}, function() {
	answerElementS.hide();
});

}); })(jQuery);

//*****************************************************************************************************
//MAP/DIRECTIONS
//*****************************************************************************************************
function getDrivingDirections()
{
	var drivingDirWindow = window.open('http://www.mapquest.com/maps/map.adp?searchtype=address&formtype=search&countryid=US&addtohistory=&country=US&address=7115 Greenville Ave., Suite 200&city=Dallas&state=TX&zipcode=75231&historyid=&submit=Get+Map','drivingDirWindow','width=800,height=600,toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes');
	drivingDirWindow.focus();
}
