$(window).scroll(function ()
{
	var popOut  = $("#popOutCallout");
	var callOut = $("#popOutCallout .callout");
		
	if(popOut.length)
	{	
		if(callOut && !callOut.is(':visible'))
		{
			if($(window).scrollTop() + $(window).height() >= popOut.offset().top + popOut.height())
			{
				callOut.show();
				callOut.animate({ right: 0 }, 500, 'linear', function() {});
			}
		}
	}
});

function popOutCalloutClose()
{
	var callOut = $("#popOutCallout .callout");

	if(callOut.is(':visible'))
	{
		callOut.animate({ right: -575 }, 500, 'linear', function() { /*callOut.hide();*/ });
	}
}

// Make room for popOut
$(document).ready(function()
{
	var popOut  = $("#popOutCallout");

	if(popOut.length)
	{	
		$("#popOutCallout .callout").addClass("pngfix");
		$("#popOutCallout").parent().css('padding-bottom','80px');
	}
});

