$(document).ready(function(){
$('.bg2').hide();
$('.bg3').hide();
$('.bg4').hide();
function bg1()
{
$('.bg2').fadeIn('slow');
$('.bg1').fadeOut('slow');
}
function bg2()
{
$('.bg3').fadeIn('slow');
$('.bg2').fadeOut('slow');
}
function bg3()
{
$('.bg4').fadeIn('slow');
$('.bg3').fadeOut('slow');
}
function bg4()
{
$('.bg1').fadeIn('slow');
$('.bg4').fadeOut('slow');
}

function start(){						
setTimeout(bg1, 5000);						
setTimeout(bg2, 10000);
setTimeout(bg3, 15000);						
setTimeout(bg4, 20000);						
}
start();
setInterval(start, 25000);

 var content = $('.content').width();
$('.scroll-box').css('width','content !important')
$('.content').resize(function(){
var content = $('.content').width();
alert('content');
})
});
