well you could change the width of the div dynamically, so something along the lines of:
Code:
<html>
<head>
<script type="text/javascript">
var imageWidth = document.getElementById('image').style.width;
var containerWidth = document.getElementById('container').style.width;
var divWidth = document.getElementById('fillwidth').style.width;
divWidth = containerWidth - imageWidth;
</script>
</head>
<body>
<div id="container">
<div id="fillwidth"></div>
<img src="fishcakes/image/fishcakeagain.png" id="image"></img>
</div>
</body>
</html>
or something along those lines
Bookmarks