Trying to position an image on top of a background

I have a background on my page and I want to position another on top of that. Here is my style/script.
<style type=“text/css”>
<!–
body {
background-image:url(‘style/bgtktsearch.jpg’); background-position:center top;
background-repeat: no-repeat;
}
image {
background-image: url(‘style/bgmanmglass.png’);
background-repeat:no-repeat;
background-position: bottom left;

}
–>
</style>
I see my background, but the other image doesn’t show. What ‘am I doing wrong?
Thanks, Scott