this.randomquote = function(){

	var length = $("#randomquote blockquote").length;
	var ran = Math.floor(Math.random()*length) + 1;
	$("#randomquote blockquote:nth-child(" + ran + ")").show();

};

$(document).ready(function() {

	$(".enlarge").colorbox({maxWidth:"95%", maxHeight:"95%"});

	//Galleria.loadTheme('/js/galleria/galleria.classic.js');
	
	randomquote();

});
