$(document).ready(function(){


	$('div#rotator').load('/fpimages.php',function(){
		resize_box();
		runCycle();
	});

function runCycle(){

	$('#rotateimage').cycle({
	fx: 'fade',
	delay: -7000
	
	});

}


function resize_box(){
	var wbheight = $('.welcome-top').height();
	var spareheight = (wbheight-$(".welcome-top .welcome").height())/2;
	$(".welcome-top .welcome").css({"height":wbheight+"px","background":"#ffffff"});
	$("#rotateimage").css("marginTop",spareheight+"px");
}












});

