$(document).ready(function() {
	
	$(".level1_roll").click(function() {
		$(this).next().slideToggle();
	});
	$(".level2_roll").click(function() {
		$(this).next().slideToggle();
	});
	
//	$(".recommend").css("background-color", "#333");
//				$.ajax({url: "/index.php/top/recommand/",
//  					success: function(html) {
//    					$(this).append(html);
//  					}
//			});
//			
//	setInterval(function() {
//		var height;
//		$(".recommend:lt(3)").fadeOut("slow", function() {
//			height = $(this).height();
//			$(this).parent().css("padding-top", height + 20);
//			$(this).parent().animate({ height: height * 2});
//			$(this).remove();
//		});
//		
//		$(".recommend").parent().animate({ paddingTop: 0 }, "slow", function() {
//			$(this).load("/index.php/top/recommand/");
//			
//
//			
//			$(this).animate({ paddingTop: 0 }, "slow");
//		});
//		
//	} ,5000);
//	
	
});

