$('document').ready(function() {
	// wait for the splash to clear (if applicable)
	if ($('#overlaybanner').length > 0)$('#usp_overlay').wait(5000); //_interval = 5000; 

	// slide open sideways
	$('#usp_overlay').animate({left:'515px'}, 1500);
	// slide open downwards
	$('#usp_overlay').animate({top:'50px'}, 1500);
});