$(document).ready(function() {
       	$("#tipafriendform h2").after('<div class="closer"><a href="#"><span>Test</span></a></div>');
        $(".closer a").bind("click", function() {
        	$("#newtipafriend").animate({
			opacity: 0,
			height: 0,
	       		marginBottom: 0	       		
			}, 1200, function() {			
			       	$("#newtipafriend").remove();
			}
		);
		return false;
	});
        $("#tipafriend a").bind("click", function() {        	
        	$("#newtipafriend").remove();
        	$("#content").prepend('<div id="newtipafriend"></div>');
        	var ajaxurl = this.href + " #tipafriendform";
	        $("#newtipafriend").animate({
	        		opacity: 0,
	        		height: 0,
	        		marginBottom: 0
	        		}, 1
	        	);
	        $("#newtipafriend").load(ajaxurl, function() {
	        	$("#tipafriendform h2").after('<div class="closer"><a href="#"><span>Test</span></a></div>');
	        	$("#newtipafriend").animate({
	        		opacity: 1,
	        		height: 260,
	        		marginBottom: 20
	        		}, 1200, function() {
				        $(".closer a").bind("click", function() {
				        	$("#newtipafriend").animate({
	        					opacity: 0,
	        					height: 0,
				        		marginBottom: 0
			        			}, 1200, function() {
							       	$("#newtipafriend").remove();
			        			}
		        			);
	        				return false;
					});
	        		}
	        	);
        	})
        	return false;
	});});
