$(function() {

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


	$("ul#newsarea li a").click(function () {
		var str = $(this).attr("id");
		$(this).removeClass("sel");
		$("#newstext").load("textshow.php",{p:str});
		$("#"+str).addClass("sel");
		scrollTo(0,200);

	});

	$("p.btn a").click(function () {
		var str = $(this).attr("id");
		$(this).removeClass("sel");
		$("#movie").load("movieshow.php",{p:str});
		$("#"+str).addClass("sel");
		scrollTo(0,200);
	});
});

