$(function() {

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


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

