$(document).ready
(
	function()
	{
		$('#slideshow').append('<img src="/images/delivery-truck.jpg" alt="Bryant" />');
		$('#slideshow').append('<img src="/images/engineering-services.jpg" alt="Bryant" />');
		$('#slideshow').cycle();
		
		$('#contentContainer').css('min-height', ($(window).height() - 265) + 'px');
	}
);

$(window).resize
(
	function()
	{
		$('#contentContainer').css('min-height', ($(window).height() - 265) + 'px');
	}
);

		


