$(document).ready(function(){
	$(".home-box p").hide();
	$(".first-p").show();
	$("#tweets").show();
	$(".home-box").css({"width" : "200px", "height" : "200px", "float" : "left", "margin-right" : "20px"});
	$(".first-p").append('<a href="#" class="read-more">Read more...</a>');
	
	$(".read-more").click(function(){
		$(".home-box").hide();
		$(this).parent().parent().show();
		$(this).parent().parent().animate({"width" : "95%", "height" : "100%", "margin-right" : "20px"});
		$("p").show();
		$(".read-more").hide();
		$(".back").show();
	});
	
	
	$(".back").click(function(){
		$(".home-box").show();
		$(".home-box p").hide();
		$(".home-box").animate({"float" : "left", "width" : "200px", "height" : "200px", "margin-right" : "20px"});
		$(".first-p").show();
		$(".back").hide();
		$(".read-more").show();
		return false;
	});
	
	
});

