$(function(){
						   
	// プリロード
	$('.over img').each(function(){
		t = new Array($(this).attr('src').replace('_off.','_on.'));
		p = new Array();
		
		for(i=0;i<t.length;i++){
			p[i] = new Image();
			p[i].src = t[i];
		}
	});

	// target=_blank
	$('a[href^=http]').each(function(){
		$(this).attr('target','_blank');
	});
	
	// ロールオーバー
	$('.over').hover(
		function(){
			v = $(this).children().attr('src');
			v = v.replace('_off.','_on.');
			$(this).children().attr('src',v);
		},
		function(){
			v = v.replace('_on.','_off.');
			$(this).children().attr('src',v);
		}
	);
	
});
