If you want do this in a clear way, you need to create an extension, that will have a block which will hold all the logics to filter out the "right" season block. Then you need to create another static block (which will be always active, as long you want to show season images) and as it's content you should call your custom block (by block directive trick). Finally you should include the above mentioned static block in the layout so that you will see the output wherever you need.
Here I am not going to do that. I am giving it to you. I will show you a cheaper (but easier) method. But believe me, even if you are going to make a custom extension, you can really rely on the code that I am gonna show you.
So this is what we are going to do. we are going to define a template that will filter the "right" season static block and then render that block. This is our template file.
STEP - 1
File : app\design\fretend\{package}\{theme}\template\custom\seasonimages.phtml
<?php
//variable declarations
$seasonFlag = false;
//you should replace this array with your static block ids.
$seasonSBCodes = array('winter-images', 'spring-images', 'summer-images', 'autumn-images');
//let us find the current active static block
foreach ($seasonSBCodes as $sbcode) {
//loading a static block based on it's id.
$block = Mage::getModel('cms/block')
->setStoreId(Mage::app()->getStore()->getId())
->load($sbcode);
//check block is active or not.
if ($block->getIsActive()) {
$seasonFlag = true;
$activeSeasonBlock = $block;
exit();
}
}
?>
<?php if ($seasonFlag): ?>
<?php
//rendering active block.
echo $this->getLayout()->createBlock('cms/block')
->setBlockId($activeSeasonBlock->getIdentifier())
->toHtml();
?>
<?php endif ?>
<script type="text/javascript">
//put your jquery here.
//this jquery will be applied irrespective of the season static block used.
//that means you should put same element class name, ids in every static block
</script>
Code explained
Here you need to replace the $seasonSBCodes array with your season static block identifiers. The code will will load static blocks based on the identifiers. Then check whether that block is active or not (this means, I assume at a time only one static block will be active. All other static blocks are disabled). If yes, then it will render that block's content. Simple but elegant. :-)
STEP - 2
Now what you need to do is, create another static block. Let me call this block as season_image_renderer. This block should hold this content.
{{block type="core/template" name="season.image.renderer" template="custom\seasonimages.phtml"}}
STEP - 3
Then add season_image_renderer static block inside your layout. That's it. You are done. Now clear your cache and then load page again. Surprise surprise :-)