jQuery(document).ready(function($){
	//リンクの処理
	$("a.out").click(function(){
		window.open(this.href, '');
		return false;}
	);
	//フォームにフォーカス
	$("#s").focus();
	//PR
	$('#prlist').newsTicker(4500);
	//スポンサー
	$('#splist').newsTicker(6000);
	//画像の拡大
	$("#photo a[href$='.jpg']").removeClass("cfg_link");
	$("#photo a[href$='.jpg']").addClass("thickbox");
	//ロールオーバー処理
	$("#box a img,.kb a img,a.thickbox,a.thickbox,#top a img").hover(
		function(){
			$(this).fadeTo(0.1,0.9);
		},
		function(){
			$(this).fadeTo(0.1,1);
		}
	);
	//スライドパネル
	$(".t_btn").click(function(){
		$(".t_panel").toggle("fast");
		$(this).toggleClass("active");
		return false;
	});
});

$(function(){
	$('#friends').twitterFriends({
		debug:1
		,username:'kcapjp'
		,loop:1
	});
});

function clearfield(obj){
if (obj.value == obj.defaultValue) obj.value = "";}
function returnfield(obj){
if (obj.value == "") obj.value = obj.defaultValue;}

