$(document).ready(function() {
	$(window).bind('resize', function() {
		if($('#body-id').width() < $('#wrapper').width())
		{
			$('#body-id').css({'background-attachment' : 'scroll', 'background-color' : '#F8F8F8', 'background-image' : 'url(/i/img/sections/sections2.gif)', 'background-position' : '-460px -10px', 'background-repeat' : 'no-repeat'});		}
		else
		{
			$('#body-id').css({'background-attachment' : 'scroll', 'background-color' : '#F8F8F8', 'background-image' : 'url(/i/img/sections/sections2.gif)', 'background-position' : 'center -10px', 'background-repeat' : 'no-repeat'});
		}

	});
});