$(document).ready(function() {
    var $home_feature = $("#home-feature");
    var $bubbles = $("#bubbles");
    var $main_bubble = $("#main-bubble");
    $("a", $home_feature).hover(function() {
        var imgName = $(this).attr("id");
        $bubbles.attr("style", "background-image: url(/images/speech_bubbles/" + imgName + ".png)");
        $main_bubble.attr("style", "background-image: url(/images/quotes/" + imgName + ".png)");
    },
    function() {
        $bubbles.attr("style", "background: none");
        $main_bubble.attr('style', 'background: none');
    });

    preload([
        '/images/speech_bubbles/cole.jpg',
        '/images/speech_bubbles/bert.jpg',
        '/images/speech_bubbles/julia.jpg',
        '/images/speech_bubbles/ursula.jpg',
        '/images/speech_bubbles/murray.jpg',
        '/images/quotes/cole.jpg',
        '/images/quotes/bert.jpg',
        '/images/quotes/julia.jpg',
        '/images/quotes/ursula.jpg',
        '/images/quotes/murray.png'
    ]);
});
