$(document).ready(function() {
	initHeader();
	initRotator();	
});

function initHeader() {
	$(".header").append('<div class="photo02"></div><div class="photo03"></div><div class="photo04"></div><div class="photo05"></div>');
	$(".header").cycle({
		timeout: 10000, 
		next: '.header', 
		pause: 1,
		random: 1
	});
}
function initRotator() {
	$(".rotator").cycle({
		timeout: 3000, 
		next: '.rotator', 
		pause: 1,
		random: 1
	});
}