$(document).ready(function(){
	setTimeout(function(){
		$('.bobby').slideDown(500, function(){
			$('.msg').fadeIn(500);
		}).append('<a href="#" class="close" title="Close this Popup">no thanks</a>')
		.children('a.close').click(function(){
			$(this).parent().parent().slideUp(200);
			return false;
		}).end()
		.filter('#bobby2, #bobby3, #bobby4').children('a.msg').append('<span id="shape-outer"></span><span id="shape-inner"></span>');
	}, 5000);
		
});