$(function() {
	$("ul#list li a").click(function () {
		var str = $(this).attr("id");
		$(this).removeClass("sel");
		$("#movie").load("movieshow.php",{p:str});
		$("#"+str).addClass("sel");
	});
	$("div#movie a").click(function () {
		var str = $(this).attr("id");
		$(this).removeClass("sel");
		$("#movie").load("movieshow.php",{p:str});
		$("#"+str).addClass("sel");
	});
});

