$(document).ready(function () {
	$('body').append('<div class="slide-out-div"><a class="handle" href="">Content</a><iframe src="/static/iframe/survey_2010June.html" marginheight="0" marginwidth="0" hspace="0" vspace="0" width="300" height="500" scrolling="no" frameborder="0"></iframe></div>');
	$('.slide-out-div').tabSlideOut({
		tabHandle: '.handle',
		imageHeight: '157px',
		imageWidth: '73px',
		tabLocation: 'right',
		speed: 300,
		action: 'click',
		topPos: '60px',
		fixedPosition: false
	});
	function handleResize() {
		var availableHandleWidth = ($(window).width() - 980) / 2;
		if (availableHandleWidth < 73) {
			$('.slide-out-div').hide();
		} else {
			$('.slide-out-div').show();
		}
	}
	$(window).resize(handleResize);
	handleResize();
});
