$('.continent').click ( function clickcontinent () {
	if ( $(this).attr('class') == 'continent continentselected') { 
		$(this).attr('class', 'continent');
		$(this).parent().animate({ 'height': '35px' }, 200 );
	} 
	else { 
		$(this).attr('class', 'continent continentselected');
		$(this).parent().animate({ 'height': $(this).parent().attr('h') }, 200 );
	}
		
	return false;
});

$('.continentcontainer').each ( function (n) { 
	$(this).attr ('h',$(this).height() + 'px');
	if (n) $(this).css('height','35px');
});

