function makeScrollable(id) {
	$("div#"+id).scrollable({
		size: 5,
		clickable: false,
		disabledClass: "",
		items: "ul",
		easing: "swing",
		speed: 500,
		prevPage: ".nav_prev",
		nextPage: ".nav_next"
	}).circular().find("ul li").each(function() {
		$(this).mouseover(function() {
			$(this).addClass("item-hover");
			if ($(this).find(".hover").length) {
				$(this).find(".default").css("display", "none");
				$(this).find(".hover").css("display", "inline");
			}
		})
		$(this).mouseout(function() {
			$(this).removeClass("item-hover");

			if ($(this).find(".hover").length) {
				$(this).find(".hover").css("display", "none");
				$(this).find(".default").css("display", "inline");
			}
		})
	});
}
