$(document).ready(function(){
$("select#list").change(function(){
var str="";
$("select#list option:selected").each(function(){
str+=$(this).text();
});
if(str=="新着順"){
$("div#newsList").load("newer_top.html")
}else if(str=="セミナー"){
$("div#newsList").load("s_top.html")
}else if(str=="イベント"){
$("div#newsList").load("e_top.html")
}else if(str=="募集"){
$("div#newsList").load("r_top.html")
}else if(str=="その他"){
$("div#newsList").load("o_top.html")
}else{
$("div#newsList").load("news_top.html")
}
})
.change();
});
