var lastDiv;

$(function(){
     //-------------------------------------------------------------------------------------------
	// SETUP WEBSITE DROP-DOWN
	//------------------------------------------------------------------------------------------ 
   	$('a.dd').click(function(){
	     if($('#nav').css("height") != "38px")
	     {
		ddMenuClose();         
	     }else{
        	  $('#nav').animate({ 
	               height: "90px"
     	     	  }, 500);

	          $('#moreSites').css("visibility","visible").animate({
		    opacity: 1.0
  	          }, 500);
	     }
	});

	
	$(".accordion_child").addClass("remove");
	$(".accordion_headings").click(function(){
	         var divId = $(this).closest("div").next("div").attr("id");

	         if(lastDiv != divId){
	              //alert(divId);
	              $(".accordion_child").hide("normal");
                   $("#"+divId+" > div.accordion_child").show("normal");
     	    }
     	    
     	    lastDiv = divId
	});
});

	//-------------------------------------------------------------------------------------------
     // CLOSE THE WEBSITES DROP DOWN MENU
     //------------------------------------------------------------------------------------------
     function ddMenuClose()
     {
          $('#nav').animate({ 
               height: "38px"
          }, 500); 

	  $('#moreSites').animate({
		opacity: 0
	  }, 500).css("visibility","hidden");
     }

