$(document).ready(function(){

$.preloadCssImages();		

$("#home").hover(function () {
      $("#background").replaceWith("<div id='background'><img src='img/home.jpg' class='bg' alt='' /></div>");
    });

$("#label").hover(function () {
      $("#background").replaceWith("<div id='background'><img src='img/label.jpg' class='bg' alt='' /></div>");
    });

$("#artists").hover(function () {
      $("#background").replaceWith("<div id='background'><img src='img/artists.jpg' class='bg' alt='' /></div>");
    });

$("#releases").hover(function () {
      $("#background").replaceWith("<div id='background'><img src='img/releases.jpg' class='bg' alt='' /></div>");
    });

$("#live").hover(function () {
      $("#background").replaceWith("<div id='background'><img src='img/live.jpg' class='bg' alt='' /></div>");
    });

$("#media").hover(function () {
      $("#background").replaceWith("<div id='background'><img src='img/media.jpg' class='bg' alt='' /></div>");
    });

$("#store").hover(function () {
      $("#background").replaceWith("<div id='background'><img src='img/store.jpg' class='bg' alt='' /></div>");
    });

$("#links").hover(function () {
      $("#background").replaceWith("<div id='background'><img src='img/links.jpg' class='bg' alt='' /></div>");
    });

$("#contact").hover(function () {
      $("#background").replaceWith("<div id='background'><img src='img/contact.jpg' class='bg' alt='' /></div>");
    });

});
