Jquery background swap and joomla?

Jquery background swap and joomla?

Hi just writing a what should be simple swap. Heres the idea.

var dark = " 'url(<?php echo $this->baseurl ?>/templates/JordanTemplate/Images/Layout/inputBGdark.png)' ";

    $('#message').focus(function() {
        if($(this).val()=="Message"){
            $(this).val("");
        }
       
        $(this).css({ 'color': '#ffffff' });
        $(this).css('background',dark);



    });

Wondering why this won't work? THanks