<script src="http://www.google.com/jsapi"></script>
<script>
// Load jQuery
google.load("jquery", "1.2.6");
</script>
<script>
$().ready(function() {
$("#shRegion_my_region_id").toggle(
function(){
$(this).attr("src","/i/themes/theme_4/rollup_plus_dgray.gif");
$("#my_region_id tr").filter(":has(.t4ButtonHolder,.t4RegionBody)").animate({ height: 'hide', opacity: 'hide' }, 'fast');
},function(){
$(this).attr("src","/i/themes/theme_4/rollup_minus_dgray.gif");
$("#my_region_id tr").filter(":has(.t4ButtonHolder,.t4RegionBody)").animate({ height: 'show', opacity: 'show' }, 'fast');
}
);
});
</script> |