If there's no hint of anything in the page source, they're using a scripting language like PHP to randomly select the image filename before the page is rendered in your web browser.
It's the same as doing the following:
Code:
<?php
$myVar = "Hello";
echo $myVar;
?>
When this script is executed and rendered in the browser, you would see only the text "Hello".
Similarly, the "bg002.jpg" portion of the page source you're looking at is being printed using some random value. You just can't see the code used to choose the image filename because that processing is done on the server side (before your browser receives a response from the web server); you just see the output of some echo statement.
Bookmarks