// JavaScript Document
 
/*グリッドの早さ*/

$(function(){
	$("#grid-content").vgrid({
		easeing: "easeInSine",
		time: 500,
		delay: 90,
		fadeIn: {
			time: 500,
			delay: 90
		}
	});
})



// JavaScript Document
$(document).ready(function() {
	var linkboxes = $(".linkbox");
		for (var i=0; i<linkboxes.length; i++){
		var readmores = $("p.readmore");
		for (var j=0; j<readmores.length; j++){
			$(".linkbox").click(function() {
				var anchorTags = this.getElementsByTagName("a");
				window.location = anchorTags[0].href;
			});
		}
	}
	$("p.readmore").addClass("none");		
	$(".linkbox").hover(function(){
		$(this).addClass("box_hover");	
		},
		function(){
		$(this).removeClass("box_hover");	
		});
})







/*インナーフェード*/

  $(document).ready(
    function(){
       $('ul#portfolio').innerfade({
          speed: 2000,
          timeout: 4000,
          type: 'sequence',
          containerheight: '102px'
       });
    })


/*インナーフェード*/

  $(document).ready(
    function(){
       $('ul#portfolio2').innerfade({
          speed: 2000,
          timeout: 4000,
          type: 'sequence',
          containerheight: '102px'
       });
    })

