I would like to load the image which i have prepared and the Flash swf file at the same time. I am loading image using CSS Stylesheet and as background. But when i tried to do the same thing with SFW file it could not load together.

Any one knows how to load image and SWF file together using CSS. The image currently coming as following

#content{
margin: 0;
padding: 160px 0 0 0;
background: url(content_top.jpg) left top no-repeat;
}

and i have tried to do following :

#content{
margin: 0;
padding: 160px 0 0 0;
background: url(content_top.jpg) left top no-repeat;
backgound-ulr: {content.swf);
load: swf;
}

it doesn't work, i think something wrong.

looking for a solution...