In layout.css:
.fullwidth {
background: url(../images/custom/town_summer.jpg) no-repeat bottom;
background-size: cover;
}
and in index.php of template:
<script type="text/javascript">
jQuery(".subtext").toggle(
function () {
jQuery('.fullwidth').css('background-image','url(<?php echo $template_path; ?>/images/custom/town_winter.jpg)');
},
function () {
jQuery('.fullwidth').css('background-image','url(<?php echo $template_path; ?>/images/custom/town_summer.jpg)');
}
);
</script>