$(function(){
	
	$(".site p").hide();
	
	$(".btn_description").click(function(){
	if(!jQuery.support.cssFloat){
		if(!$(this).hasClass("close")){
			$(this).parent().animate( { marginTop:"20px", height:"262px"}, 500 )
			$(this).siblings("p").show();
			$(this).addClass("close");
		}else{
			$(this).parent().animate( { marginTop:"245px", height:"40px"}, 500 )
			$(this).siblings("p").hide();
			$(this).removeClass("close");
		}
	}else{
		if(!$(this).hasClass("close")){
			$(this).parent().animate( { marginTop:"-225px", height:"262px"}, 500 )
			$(this).siblings("p").show();
			$(this).addClass("close");
		}else{
			$(this).parent().animate( { marginTop:"0px", height:"40px"}, 500 )
			$(this).siblings("p").hide();
			$(this).removeClass("close");
		}
	}
		
	});
	
});
