$(document).ready(function(){
	
	$('#quotations').newsTicker();
	
	$('#container').width($(window).width());
	
	if (($('#nav').height() + $('#citation').height() + $('#pub').height() + $('#content').height() + $('#content2').height()) < $(window).height()) {
		$('#container').height($('#nav').height() + $('#citation').height() + $('#pub').height() + $('#content').height()  + $('#content2').height() + 125);
		
	} else {
		$('#container').height($(window).height());	
	}
	
	$('#grid-content').width($(window).width() + 400);
	
	$('#footer').width($(window).width());
	
	$("#grid-content").vgrid({
		easeing: "easeOutQuint",
		time: 400,
		delay: 20,
		fadeIn: {
			time: 500,
			delay: 50
		}
	});
	
	$("#grid-content").vgsort(function(a, b){
		return Math.random() > 0.5 ? 1 : -1 ;
	}, "", 0, 0);
	
	$(window).resize(function() {
		$('#container').width($(window).width());
		if (($('#nav').height() + $('#citation').height() + $('#pub').height() + $('#content').height() + $('#content2').height()) < $(window).height()) {
			$('#container').height($('#nav').height() + $('#citation').height() + $('#pub').height() + $('#content').height()  + $('#content2').height() + 125);
			
		} else {
			$('#container').height($(window).height());	
		}
		$('#grid-content').width($(window).width() + 400);
		$('#footer').width($(window).width());
	});
	
	$("#menu .menu-section .post .title-open").toggle(function() {
		$(this).parent().find(".info").slideDown('fast');
	}, function() {
		$(this).parent().find(".info").slideUp('fast');
	});

});
