$(document).ready(function() {
	$('.box .top').hover (
		function() {
			$(this).find('.arrowdown').show();
		},
		function() {
			$(this).find('.arrowdown').hide();
		});
	$('.box .top .arrowdown').click (function() {
		$(this).closest('.box').find('.content').toggle();
	});
	$(".close").click(function () {$(".popup-bg, .popup").fadeOut("fast");});    
	$(".popopen").click(function () {$(".popup-bg, .popup-wrap, .popup").fadeIn("fast");});  
	$(".back-top").click(function() {
		$("html, body").animate({ scrollTop:0 });
		return false;
	 });
  
});
