$(document).ready(function() {

	$("a[rel=img_group]").fancybox({
		'centerOnScroll'	: true,
	});
	
	$("#the-background").ezBgResize();



// Animation
	spectrum();
	function spectrum(){
	var hue = 'rgb(' + (Math.floor(Math.random() * 256)) + ',' + (Math.floor(Math.random() * 256)) + ',' + (Math.floor(Math.random() * 256)) + ')';
	$('.animate-text').animate( { color: hue }, 5000);
	spectrum();
    }

});

$(window).bind("resize", function(){
    $("#the-background").ezBgResize();
});
