$(document).ready(function() {
 $(resizer);
 function resizer(){
 winHeight = $(window).height();
 winWidth = $(window).width();
 if(winWidth < 1180){
$(".header").animate( { width:"100%" }, { queue:false, duration:1000 } )
$(".contents").animate( { width:"100%" }, { queue:false, duration:1000 } )
$(".container").animate( { width:"100%" }, { queue:false, duration:1000 } )
$(".visual").animate( { left:"0px" }, { queue:false, duration:1000 } )
.animate( { marginTop:"0px" }, { queue:false, duration:1000 } )
.animate( { marginLeft:"0px" }, { queue:false, duration:1000 } )
$(".subvisual").animate( { top:"-60px" }, { queue:false, duration:1000 } )
$(".global-menu").animate( { bottom:"11px" }, { queue:false, duration:1000 } )
$(".footer").animate( { bottom:"0px" }, { queue:false, duration:1000 } )
 } else if (winWidth > 1180){
$(".header").animate( { width:"1180px" }, { queue:false, duration:1000 } )
$(".contents").animate( { width:"1180px" }, { queue:false, duration:1000 } )
$(".container").animate( { width:"100%" }, { queue:false, duration:1000 } )
$(".visual").animate( { left:"0px" }, { queue:false, duration:1000 } )
.animate( { marginTop:"0px" }, { queue:false, duration:1000 } )
.animate( { marginLeft:"0px" }, { queue:false, duration:1000 } )
$(".subvisual").animate( { top:"-60px" }, { queue:false, duration:1000 } )
$(".global-menu").animate( { bottom:"11px" }, { queue:false, duration:1000 } )
$(".footer").animate( { bottom:"0px" }, { queue:false, duration:1000 } )
 }
}
$(window).bind("resize", resizer);
});
//<![CDATA[
$(function(){
	$("#grid-content").vgrid({
		easeing: "easeOutQuint",
		time: 400,
		delay: 20
	});
});
//]]>


