/*
 * home-banner-full.js
 * 
 * Copyright (c) Monkey Works
 * 
 * Since:     2010-01-18
 * Modified:  2010-01-18
 *
 * jQuery 1.3.2
*/

$(function (){
	
	// バナー画像
	var banners = new Array(
		'<a href="http://saiyo.monkey-works.com/" target="_blank"><img src="img/banner-full-recruit.gif" alt="もったいない採用活動していませんか？御社専用の採用サイトですべて解決します。" width="498" height="107" /></a>'
		//,'<a href="04contact/01estimate/index.html"><img src="../img/banner-full-branding.gif" alt="デザイン戦略によるブランド構築で、他社と差をつける！各種ブランディングツール無料ご相談受付中。" width="498" height="107" /></a>'
	);
	
	// ランダムにバナー画像を取得
	var content = banners[Math.floor(Math.random()*banners.length)]
	
	// 配置
	content = '<p>' + content + '</p>';
	$("#home-banner-full").append(content);
	
});
