$(document).ready(function() {
	<!-- meerkat -->
	$('header').meerkat({
		background: '#1e1e1e',
		height: '75px',
		width: '100%',
		position: 'bottom',
	});
	
	<!-- lightbox -->
	$('.gallery a.box').colorbox({transition:'fade', initialWidth: 50, initialHeight: 50});
	
	<!-- color scroller -->
	spectrum();
	function spectrum(){
		var hue = 'rgb(' + (Math.floor(Math.random() * 256)) + ',' + (Math.floor(Math.random() * 256)) + ',' + (Math.floor(Math.random() * 256)) + ')';
		$('.title').animate( { color: hue }, 8500, function() { spectrum(); } );
	}
});
