var whirligig = $('<div id="whirligig"><div></div></div>');
whirligig.children('div').css('margin-top',$(window).height()/2 - 60);

function addWhirligig() {
	$('body').append(whirligig);
}

function removeWhirligig() {
	whirligig.remove();
}
