
$(document).ready( function(){

     $('ul#animation').animatedinnerfade({ 
            speed:2000, 
            timeout:10000, 
            type:'sequence', 
            containerheight:'110px', 
            containerwidth:'170px', 
            animationSpeed:15000, 
            animationtype:'fade',
            displayTitle:'none'
      }); 
	 
	var sets = [], temp = [];
	$('.toppage #info .section').each(function(i){
		temp.push(this);
		if(i % 2 == 1){
			sets.push(temp);
			temp = [];
		}
	});
	if(temp.length) sets.push(temp);
	
	$.each(sets, function(){
		$(this).flatHeights();
	});
	
	externalLink();
}); 

function externalLink(){
	var self = "mediar.co.jp";
	$("a[href^=http://]").each(function(){
		var s = $(this).attr("href");
		if(s.indexOf(self) == -1){
			$(this).attr("target","_blank");
		}
	});
	$('a[href$=.pdf],a.blank').each(function(){
		$(this).attr('target','_blank');
	});
}

