// JavaScript Document

var max_num = 2;
var num = 0;

//	News & Topics

function topics()
{
var num = Math.floor(Math.random() * max_num)+1;

//	num = 6;

if (num == 1) {
	tp_model = "V-STUDIO 20";
	tp_source = "images_new/products/top_VS-20.png";
	tp_name = "";
	tp_text = "V-STUDIO 20は、ギタリストやバンドマンにフォーカスしたオール・イン・ワンのパッケージ。ハードウェアとソフトウェアの親和性を高めることで、コンピューターに不慣れな方でも直感的に操作でき、ギタリストが慣れ親しんだ単体MTR感覚のレコーディングが行えます。";
	tp_link = "http://www.roland.co.jp/products/jp/VS-20/index.html";
}
if (num == 2) {
	tp_model = "ローランド・オンラインセミナー";
	tp_source = "images/ProdBanners/top_online.png";
	tp_name = "e-learning";
	tp_text = "インターネットにつながったパソコンがあれば、いつでもSONARのレッスンができるローランド・オンラインセミナー「SONAR 入門コース」を開講中。SONAR X1/8.5/ 8.0/ LEに対応した初心者向けカリキュラムをそれぞれご用意。全6回コースのうち、第1回目は無料！どなたでも受講できます。";
	tp_link = "http://online-seminar.roland.co.jp/index.html";
}

document.write('<div class="box_img_topics">');
document.write('<div align="center"><img src="' + tp_source + '" width="110" height="140" /></div></div>');
document.write('<div class="box_text_topics">');
document.write('<div class="topics_model">' + tp_model + '</div>');
document.write('<div class="topics_name">' + tp_name + '</div>');
document.write(tp_text + '</div>');
document.write('<div class="box_link">');
document.write('<p><a href="' + tp_link + '">詳細はこちら</a></p>');
document.write('</div>');
}
