This is where my banner image is stored, in the javascript:
```
/*
Background slideshow
*/
$('.top-content').backstretch("assets/img/backgrounds/Banner_1024 x 768.jpg");
$('.testimonials-container').backstretch("assets/img/backgrounds/testimonial1.jpg");
$('a[data-toggle="tab"]').on('shown.bs.tab', function(){
$('.testimonials-container').backstretch("resize");
});
```
I want to add another version of the banner image for mobile and other screen sizes. Do I add them in the javascript here? How do I link everything in my media queries?
You are using the jQuery plugin, Backstretch.
A quick look at the documentation at https://github.com/jquery-backstretch/jquery-backstretch shows that this is a built in feature. Just pass an array of images and widths.