На основании инопланетян, здесь у вас есть:
<div id="map" style="overflow:hidden"> <!-- Look at the style -->
Map Content Is Here <br>
This is the seccond line
</div>
<p class="hidemap">HIDE MAP</p>
Сценарий:
var orig_height = $('#map').height();
$('p.hidemap').click(function()
{
var new_height = orig_height;
var new_opacity = 1;
if($('#map').height() == orig_height){
new_height = Math.floor(orig_height * .01);
new_opacity = .3;
}
$('#map').animate({
height: new_height,
opacity: new_opacity
}, 2000);
});
Надеюсь, это поможет. Приветствия