/**
	Hello Interactive | Pony : Back in the game Blog
	Developer(s):
		+ Fellipe Cicconi (liperuf@gmail.com)
*/

function equalHeight(span, args) {
	var maxHeight=0;
	for(var i=0;i<equalHeight.arguments.length;i++)
		$(equalHeight.arguments[i]).each(function(){
			maxHeight = ($(this).height()>maxHeight)? $(this).height() : maxHeight;
		});
	for(var i=0;i<equalHeight.arguments.length;i++)
		$(equalHeight.arguments[i]).css({ height: (maxHeight+span) });
}