$(function(){
	$('#sliderHousing').load("content/switchboard.php");
	$(document).pngFix();
	$.preloadCssImages();
	var windowHeight = $(window).height();	
	$(".fullPanel").css('height', windowHeight);

	$("#sliderHousing").css('height',1000);
	

});



$(window).resize(function(){
	var panelWidth = $(window).width();
	var panelCount = $("div.panel").size();
	var stripViewerWidth = panelWidth*panelCount;

	$("div.panelContainer").css("width" , stripViewerWidth);
	$("div.panel").css("width" , panelWidth);

	$(".fullPanel").css('height', $('#sliderHousing').height());

	var cnt = $('body').children('div:first').text();
	$("div.panelContainer").animate({ left: cnt * panelWidth * -1}, 0);
	
	resizeBioPic();

});


function resizeBioPic(){
	var newHeight = $("#aboutPanel .wrapper p").height() + 35;
	$("#picBox").height(newHeight);
};
