$(document).ready(function(){
	$(".show_list").live("click", function(){
		$(this).parent().toggleClass("current");
		var id=this.rel;
		
		$("#"+id).toggle(300);
		return true;
	});
	
	$("#next").hover(
		function(){
			$(this).children().attr("src", "/images/arrowr_red.png");
		},
		function(){
			$(this).children().attr("src", "/images/arrowr.png");
		}
	);
	
	$("#previous").hover(
		function(){
			$(this).children().attr("src", "/images/arrowl_red.png");
		},
		function(){
			$(this).children().attr("src", "/images/arrowl.png");
		}
	);
});
