I'd also suggest jQuery.
Assuming you wanted to slide an ad in when something is clicked. You'd just adjust the animate method to move your element to where you'd like it to go.
$("#clicked_element").click(function(){ $("#my_ad").animate({"left": "+=50px"}, "slow");});
Lots of different events you can bind to besides a click.
__________________
subarus.
|