$(function(){
	$('body').css('min-height',$('#wrap').height());
	$(window).resize(function(){
		$('body').css('min-height',$('#wrap').height());
	});
	$('#about #sideBar').height($('#about #main').height());
	var bCard = '<div class="bCard"><a href="#" class="close">close</a><strong>Site designed and coded by:</strong><p>Geoff Colbath<br/><a href="mailto:colbath@gmail.com">colbath@gmail.com</a></p></div>'
	$('#footer small a').click(function(){
		var pos = $(this).offset();
		$(bCard).appendTo('body').css({
			'left':pos.left+25,
			'top':pos.top-100
		});
		$('.bCard a.close').click(function(){
			$('.bCard').remove();
			return false
		})
		return false;
	})
})
