function pnt(){

// ランダムに画像を表示する
jmp = new Array();
img = new Array();
alt = new Array();

// ジャンプ先のアドレス(数字は画像と対応)
// GOODFINDキャリア
jmp[0] = "http://career.goodfind.jp/";
img[0] = "http://www.goodfind.jp/student/images/gfc-ad-banner.jpg";
alt[0] = "GOOD FIND CAREER - トップのビジネスパーソンを目指す人のためのベンチャー転職";

// 山村商事（広告）
jmp[1] = "http://www.goodfind.jp/student/suit.html";
img[1] = "http://www.goodfind.jp/student/images/banner_suit.gif";
alt[1] = "会社だけでなく、スーツ選びもこだわりませんか？GOOD FINDスーツ講座";

// 早稲田総研様（広告）
jmp[2] = "http://www.quon.asia/";
img[2] = "http://www.goodfind.jp/student/images/quon.gif";
alt[2] = "QuonNet-クオンネット まなぶ・つながる・はじまる、くおん。";

// インターン
jmp[3] = "http://www.goodfind.jp/student/intern/";
img[3] = "http://www.goodfind.jp/student/images/br_rd_intern.jpg";
alt[3] = "トップの実力をつけるためのGOOD FINDインターンナビゲーション";

// OYLS
jmp[4] = "http://www.goodfind.jp/oyls/index.html";
img[4] = "http://www.goodfind.jp/student/images/br_rd_oyls.jpg";
alt[4] = "OYLS 未来のビジネスリーダーを志す大学生/大学院生のための先輩達による成長支援プログラム[オイルス]";

// キャンパスベンチャー
jmp[5] = "http://www.cvg-nikkan.jp/index.html";
img[5] = "http://www.goodfind.jp/student/images/cmp.jpg";
alt[5] = "キャンパスベンチャー";

//英検
jmp[6] = "http://www.eiken.or.jp/";
img[6] = "http://www.goodfind.jp/student/images/br_rd_eiken.jpg";
alt[6] = "あなたの現在の英語力を判定！";

// NRI
//jmp[7] = "http://www.nri.co.jp/publicity/2010/2009/contest2009.html";
//img[7] = "http://www.goodfind.jp/student/images/banner_NRI.gif";
//alt[7] = "野村総合研究所 NRI学生小論文コンテスト2009";


n = Math.floor(Math.random()*jmp.length);

document.write("<a href='"+jmp[n]+"' target='_blank'>");
document.write("<img src='"+img[n]+"' border='0' alt='"+alt[n]+"' />");
document.write("</a>");
}
//OBOGインタビュー特集用
function pnt2(){

// ランダムに画像を表示する
jmp = new Array();
img = new Array();
alt = new Array();
// 
jmp[0] = "http://www.goodfind.jp/student/obog/interview-pick_up_cnsl.html";
// 
jmp[1] = "http://www.goodfind.jp/student/obog/interview-pick_up_stdnt.html";
// 
jmp[2] = "http://www.goodfind.jp/student/obog/interview-pick_up_rcrt.html";
//
jmp[3] = "http://www.goodfind.jp/student/obog/interview-pick_up_tptch.html";
// 画像のアドレス(数字はジャンプ先のアドレスと対応)
img[0] = "http://www.goodfind.jp/student/images/br_lt_consul.gif";
img[1] = "http://www.goodfind.jp/student/images/br_lt_student.gif";
img[2] = "http://www.goodfind.jp/student/images/br_lt_recruit.gif";
img[3] = "http://www.goodfind.jp/student/images/br_lt_tec.gif";
// 画像のalt属性
alt[0] = "OBOGインタビューコンサルタント特集";
alt[1] = "OBOGインタビュー学生起業家特集";
alt[2] = "OBOGインタビューリクルート出身者特集";
alt[3] = "OBOGインタビュートップ技術特集";

//n = Math.floor(Math.random()*jmp.length);
n = Math.floor(Math.random()*4);
//n = 5;

document.write("<a href='"+jmp[n]+"'>");
document.write("<img src='"+img[n]+"' width='190' height='100' alt='"+alt[n]+"' />");
document.write("</a>");
}

function pnt_200_200(){

// ランダムに画像を表示する
jmp = new Array();
img = new Array();
alt = new Array();

// ジャンプ先のアドレス(数字は画像と対応)
// EF
jmp[0] = "http://efpartner.ef.com/default.asp?country=JP&etag=OB_OG_APP&goto=master/ly/";
// IELTS
jmp[1] = "http://www.britishcouncil.org/jp/japan-exams-ielts.htm";

// 画像のアドレス(数字はジャンプ先のアドレスと対応)
img[0] = "http://www.goodfind.jp/student/images/br_rd_EF.jpg";
img[1] = "http://www.goodfind.jp/student/images/br_rd_IELTS.gif";

// 画像のalt属性
alt[0] = "";
alt[1] = "";

//n = Math.floor(Math.random()*jmp.length);
n = Math.floor(Math.random()*2);

document.write("<a href='"+jmp[n]+"' target='_blank'>");
document.write("<img src='"+img[n]+"' width='200' height='200' alt='"+alt[n]+"' />");
document.write("</a>");
}

