/*
 * jQuery Resize Panels
 * Copyright 2009 Christopher M. McGarry,  people need websites, llc
 * 
 * Just a little helper function to adjust the scrollto carousel on window resize.
 */

	function resizePanel() {
			width = $(window).width();
			height = $(window).height();
			mask_width = width * $('.item').length;
			$('#debug').html(width  + ' ' + height + ' ' + mask_width);
			$('#carouselwrapper, .item').css({width: width});
			$('#mask').css({width: mask_width});
			$('#carouselwrapper').scrollTo($('a.selected').attr('href'), 0);
	}
