jQuery.noConflict();
jQuery(document).ready(function(){

    var width  = jQuery(window).width();

    jQuery("#background").width(width);

    jQuery(window).resize(function(){

        width  = jQuery(window).width();

        jQuery("#background").width(width);

    });

})
