jQuery(document).ready(function(){
		
		// jquery plugin to make sidebar and main content area the same height...
		//$('#equalheight').equalHeights();
		
		// make 'Treatments' unclickable in menu
		jQuery('.menu ul li a:[title]').each(function() {
		  var jQuerythis = $(this);
		  if(jQuerythis.attr('title') === 'Treatments') {
			jQuerythis.attr('href', '#');
		  }
		});
		
		// do something when 'faq' question is clicked...
		$('#faq-questions ul li a').click(function() {
			// if any other questions are visible, close them up first
			if ($("#faq-questions ul li span").is(":visible")) 
			{
				$("#faq-questions ul li span").slideUp('fast');
			} 
			
			// if the current question is visible, close it or else it's not visible, so open it....
			if ($(this).siblings().is(":visible")) 
			{
				$(this).siblings().slideUp(900);
			} else
			{
				$(this).siblings().slideDown(900);
			}
		});

        // show addresses when clinics are hovered....
		jQuery('#list-clinics-head a').hover(
		    function () {
                jQuery(this).siblings().slideDown(600);
              }, 
            function () {
                jQuery(this).siblings().hide();
            }			
		);

		// keep locations visible if hovering it....
        jQuery("#list-clinics-head .clinic-address-head").hover(
            function () {
            jQuery(this).show();
          },
          // hide/ clean up/ back to normal...
          function () {
            jQuery(this).hide();
          }
        );

        jQuery("table.offers-section tr:odd").css("background-color", "#FCF1BF");
		
});

