$(document).ready(function() {
				
	$(".inner div").hide();
	
	$('button').toggle(
		function() {
			var el = $(this).parent();
			var method = el[0].id;
			el.animate({height:150}, {duration: 400, easeMethod: method});
			$(this).removeClass('more');
			$(this).addClass('less');
			$(this).next().html("less info");
			$(this).next().next().animate({opacity:'toggle'}, {duration: 400, easeMethod: method});
		},
		function() {
			var el = $(this).parent();
			var method = el[0].id;
			el.animate({height:30}, {duration: 400, easeMethod: method});
			$(this).removeClass('less');
			$(this).addClass('more');
			$(this).next().html("more info");
			$(this).next().next().animate({opacity:'toggle'}, {duration: 400, easeMethod: method});
		}
		
	);
	

	/*
$(".mySites .site").hover(function() {
		$(this).next("em").animate({opacity: "show", top: "-75"}, "slow");
	}, function() {
		$(this).next("em").animate({opacity: "hide", top: "-85"}, "fast");
	});
*/


});
