$(document).ready(function(){
	$.post("../function/getTopShow.php",{},function(data){
			if(data){
				var pos = $("#attentionUp").position();
				var l = pos.left + $("#attentionUp").width() + 15;
				var style= "display:none;z-index:9999;position:absolute;background-color:#004e99;width:290px;left:" + l + "px;top:" + pos.top + "px";
				var div = "<div id='listLecture' style='"+style+"'>"
								+ data
								+ "</div>";
				var img = "<img src='images/attention.jpg' width='244' height='143' alt='近日中に開催する講習会のご案内' style='display:block;cursor:pointer' id='openList'/>";
				$("#attentionUp").empty();
				$("#attentionUp").append(img);
				$("body").append(div);
			}else{
//				var img = "<img src='images/noAttention.jpg' width='244' height='143' alt='準備中です' style='display:block'/>";
				var img = "<a href='./actCourse.html'><img src='images/attention.jpg' width='244' height='143' alt='近日中に開催する講習会のご案内' style='display:block;cursor:pointer' id='openList'/></a>";
				$("#attentionUp").empty();
				$("#attentionUp").append(img);
			}
		},"html");
	
	});
	
$(function(){
	$(".lectureLink").live('mouseover',function(){$(this).css("background-image","url(../images/listLectureBackOn.jpg)");});
	$(".lectureLink").live('mouseout',function(){$(this).css("background-image","url(../images/listLectureBack.jpg)");});	

	$("body").click(function(){$("#listLecture").hide();});
	$("#openList").live('click',function(){
		setListLectureXY();
		var param = {height:"toggle", opacity:"toggle"};  
		$("#listLecture").animate(param,500);
		});
	$(window).resize(function(){setListLectureXY();});
});

function setListLectureXY(){
	var pos = $("#attentionUp").position();
	var l = pos.left + $("#attentionUp").width() + 15;	
	$("#listLecture").css("left",l);
	$("#listLecture").css("top",pos.top);
}
