$(document).ready(function(){
	$(".btn-slide").click(function(){
	  $("#panel").slideToggle("slow");
	  $(this).toggleClass("active");
	  $(this).text($(this).text() == 'See more... (Internships and Part-time Jobs)' ? 'See less... (Internships and Part-time Jobs)' : 'See more... (Internships and Part-time Jobs)'); 
	  return false
	});
	
});
$(document).ready(function(){
	$(".btn-slide2").click(function(){
	  $("#panel2").slideToggle("slow");
	  $(this).toggleClass("active");
	  $(this).text($(this).text() == 'See more... (Exchange Programs & High School)' ? 'See less... (Exchange Programs & High School)' : 'See more... (Exchange Programs & High School)'); 
	  return false
	});
	
});
$(document).ready(function(){
	$("#menu-v3-right-bottom").hover(function(){
	  $("#menu-v3-hidden").slideToggle("slow");
	}, function() {
	  $("#menu-v3-hidden").slideToggle("slow");
	});	
});



