$(document).ready(function() {
	
	
	$(".placeholder-one, .placeholder-three").show();
	$('#masthead').css({'float' : 'left'});
	
	resize();

	function resize() {
	var newWidth =  (($(window).width() - $('#masthead').width()) / 2);
	
	$('.placeholder-one').width(newWidth);
	$('.placeholder-three').width(newWidth - 1);
	}
	
	$(window).resize(function() {
		resize();
	});


	$('.text-box-area').show().cycle({
			fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
			delay:  -6000,
			delay:  2000, 
			speed:  500
	});

}); 
