Thanks, that works but what I'd like to know, it if there is a simple way of doing it with a block of javascript, something taht doesn't require any else liek jQuery
well tbh - its not hard to included the jQuery script in your header - linked to it remotly on google... the code for doing it with JS will prob be much heavier... :)
$(function() {
$(\"#targetsID\").hover(function() {
$.(this).animate({left: \"25px\"});
)};
Something like that? (untested btw lol)
-Thanks