$((function() {

/*$(".arrow1").click(function(){
	if($(this).parents(".box2").children(".box2in").children(".scroll-item:visible").prev(".scroll-item").size()){
		$(this).parents(".box2").children(".box2in").children(".scroll-item:visible").hide().prev(".scroll-item").show();
	};
	return false
});

$(".arrow2").click(function(){
	if($(this).parents(".box2").children(".box2in").children(".scroll-item:visible").next(".scroll-item").size()){
		$(this).parents(".box2").children(".box2in").children(".scroll-item:visible").hide().next(".scroll-item").show();
	};
	return false
});*/

$(".menu li").hover(function(){
	$(this).children("ul").show();
},function(){
	$(this).children("ul").hide();
});

}));
