$(document).ready(function(){

	initMenu();
	 $('a[rel*=facebox]').facebox();
	/*function showFacebox(target){
		
	}*/
	
	 $('.therapypop').click(
		function() {
			var htmlToShow = $(this).parents().html();
			jQuery.facebox(htmlToShow)
		}
	 );
	 
	 /*$('.clinictour > img').click(
		function() {
			var htmlToShow = $(this).attr('name');
			//alert(htmlToShow);
			jQuery.facebox(htmlToShow);
		}
	 );*/ 
	 
	 

});

function initMenu() {
  $('#treatment_main ul').hide();
  var href = jQuery(location).attr('href');
	
	if(($(location).attr('href').indexOf("laser"))!=-1){
		$('#treatment_main ul:eq(0)').show();	
	}else if(($(location).attr('href').indexOf("aesthetic"))!=-1){
		$('#treatment_main ul:eq(1)').show();
	}else if(($(location).attr('href').indexOf("beauty"))!=-1){
		$('#treatment_main ul:eq(2)').show();	
	}else if(($(location).attr('href').indexOf("complementary"))!=-1){
		$('#treatment_main ul:eq(3)').show();	
	}else{
		$('#treatment_main ul:eq(0)').show();
	}
	
 // $('#treatment_main ul:first').show();
  $('#treatment_main li a').click(
    function() {
      var checkElement = $(this).next();
      if((checkElement.is('ul')) && (checkElement.is(':visible'))) {
        return false;
        }
      if((checkElement.is('ul')) && (!checkElement.is(':visible'))) {
        $('#treatment_main ul:visible').slideUp('normal');
        checkElement.slideDown('normal');
        return false;
        }
      }
    );
  }

