In your CSS there's this block:
html, body, .maintitle, .popupInner h3 {
background: #323232 url(http://www.ls-nextgeneration.com/public/style_images/sylo/backgroundpink.png ) repeat;
}
If you want it to not scroll and stick to your screen, replace that block with this:
html, body, .maintitle, .popupInner h3 {
background: #323232 url(http://www.ls-nextgeneration.com/public/style_images/sylo/backgroundpink.png ) repeat;
background-attachment: fixed;
}
If you want it to scroll but not repeat, replace that block with this:
html, body, .maintitle, .popupInner h3 {
background: #323232 url(http://www.ls-nextgeneration.com/public/style_images/sylo/backgroundpink.png ) no-repeat;
}