function menuDropDown() {
$(document).ready(function(){
  $(".dropDownBlock").mouseenter(function(){
    $(this).children(".dropDownBody").slideDown(150);
  });
  
  $(".dropDownBlock").mouseleave(function(){
    $(this).children(".dropDownBody").slideUp(150);
  });
  
  $("#changeInfo").click(function(){
    $("#changeProfileTable").slideToggle("slow");
  });
  
  $("#middle").ready(function(){
    $("#middle").slideToggle(500);
  });
  
  $("#themeCampContent").ready(function(){
    $("#themeCampContent").fadeIn(1000);
  });
  
  $(".articleBarHolder").ready(function(){
    $(".articleBarHolder").fadeIn(50);
  });
  
});
}

function fooDropDown() {
  $(document).ready(function(){
	   $(".sideItemGroup").mouseenter(function(){
        $(this).children(".dropDownGroup").slideToggle(200);
     });
		
		$(".sideItemGroup").mouseleave(function(){
        $(this).children(".dropDownGroup").hide();
     });
   });
}


function contentToggle() {
   $(document).ready(function(){
     $("#contentToggle").click(function(){
       $("#editPageContent").slideToggle("slow");
     });
   });
}
