// JavaScript Document


/*データテンプレート
【No】:{src:'【画像のアドレス】', alt:'【画像のalt文言】', link:'【リンク先のアドレス】', target:'【ウィンドウ名】'}


【ウィンドウ名】について
 _self   : 現在のフレーム（ウィンドウ）に表示
 special : スペシャルページウィンドウに表示

*/
var data ={
	1:{src:'images/top/banner_kinkyu_cc.jpg', alt:'コールセンター', link:'special/callcenter/recall.html', target:'special'},

	2:{src:'images/top/banner_it_life.jpg', alt:'ビジネスプロセスアウトソーシング', link:'special/bpo/', target:'special'},

	3:{src:'images/top/banner_shindan.jpg', alt:'ビジネスプロセスソリューション', link:'special/bps/', target:'special'},
	
	4:{src:'images/top/banner_trendmicro.gif', alt:'トレンドマイクロ様事例', link:'customercase/customer/trendmicro.html', target:'_self'},
	
	5:{src:'images/top/banner_nichireifoods.gif', alt:'ニチレイフーズ様事例', link:'customercase/customer/nichireifoods.html', target:'_self'},
	
	6:{src:'images/top/banner_microsoft.gif', alt:'マイクロソフト様事例', link:'customercase/customer/microsoft.html', target:'_self'},

	7:{src:'images/top/banner_ccwa2009.gif', alt:'コンタクトセンターワールドアワード2009世界大会3位入賞', link:'callcenter/ccwa2009.html', target:'_self'}

}





$(document).ready(function(){

   /* TOP画像表示 */

   $("#mainVisual1").html("<img src='images/top/top.gif' alt='Your Global IT Partners.' /></a>");

   

   

   /* バナーランダム表示 */

   var rond_no = Math.floor(Math.random()*7+1);

   

   $("#mainVisual2").html("<a href='"+ data[rond_no].link +"' target='"+data[rond_no].target+"'><img src='"+ data[rond_no].src+"' alt='"+ data[rond_no].alt +"' /></a>");

   

});





