say I have something like this for a layer:
Code:
div.image  { 
  position:absolute; visibility:hidden; 
  width:200px; left:10; top:10; z-index:500; 
  font-size:12px; 
  background-color: white;
  border: 3px solid;	
  border-color: black; 
  z-index:500;
	}
how would I make it appear / disappear on mouseover of a link
I dont want anything fancy in the layer (like links etc) just a picture to
appear near the mouse (and make sure its visible )

do I need to use javascript? or can this all be done with CSS?

thanks!