// JavaScript Document

function sl(id){
if (document.getElementById){
obj = document.getElementById(id);
if (obj.style.display == "none"){
obj.style.display = "";
} else {
obj.style.display = "none";
}
}
}



$(document).ready(function(){
						   
		
		$("div#fademe").fadeIn(800);
		
	$("a#more").click(function() {
		$("tr#cmore").fadeIn(800);
		$("tr#cmore1").fadeIn(800);
		$("tr#cmore2").fadeIn(800);
		$("tr#cmore3").fadeIn(800);
		$("tr#cmore4").fadeIn(800);
		$("tr#cmore5").fadeIn(800);
		$("tr#cmore6").fadeIn(800);
		$("tr#cmore7").fadeIn(800);
		$("a#more").hide();
		$("a#moreoff").show();
	});
	
	$("a#moreoff").click(function() {
		$("tr#cmore").fadeOut(500);
		$("tr#cmore1").fadeOut(500);
		$("tr#cmore2").fadeOut(500);
		$("tr#cmore3").fadeOut(500);
		$("tr#cmore4").fadeOut(500);
		$("tr#cmore5").fadeOut(500);
		$("tr#cmore6").fadeOut(500);
		$("tr#cmore7").fadeOut(500);
		$("a#more").show();
		$("a#moreoff").hide();
	});
	
	$("a#event_spec").click(function() {
		$("div.term_aevent_inner").animate ({ paddingRight: 10, width: 520}, 600);	 
		setTimeout ('$("div.term_aevent_inner_detail").fadeIn(800);', 500);
		$("a#event_spec").fadeOut(200);
   
	});





	
	  
});


