
/*
----------------------------------------------------------------------------------------------------

	■ 基本情報
		- 著作権	:	Copyright(c) 2008 Apullo.com, All Rights Reserved.
		- 作成者	:	アプロコム株式会社　田中大士
		- 作成日	:	2008/12/25
		- 更新日	:

	■ ファイル情報
		- 名称
			 ページ設定

		- 概要
			 各ページ専用のスタイル

		- コアファイル
			 jQuery 1.2 +

	■ ソース内容
		- 基本処理
			 リンクのフォーカス削除
			 テキストの自動選択
			 新規ウィンドウの作成

	■ 対応ブラウザ
		- Microsoft Internet Explorer
			 6 +		:	○

		- Mozilla Firefox
			 1.0 +	:	○

		- Opera
			 9.0 +	:	○

		- Apple Safari
			 3.0 +	:	○

		- Google Chrome
			 beta		:	○

	■ 更新履歴

----------------------------------------------------------------------------------------------------
*/


/*
 基本処理
---------------------------------------------------------------------------------------------------- */
$(function(){
	//新着情報の読み込み


	$('div#news_contents').load('/new.php');




	//ポップアップウィンドウ作成



	$('a[@rel=popup]').click(function(){
		window.open($(this).attr('href'), '', 'width=500, height=500, toolbar=0, status=1, scrollbars=1, resizable=0');
		return false;
	});
});

