$(document).ready(function(){	

	setWidth();

})

// Run function on window resize
$(window).resize(function(){setWidth();});

function setWidth() {
	var width = 0;
    if (document.documentElement) {
       	width = document.documentElement.offsetWidth;
     } else if (window.innerWidth && window.innerHeight) {
        width = window.innerWidth;
     }

     $('#sliderWrap .slide').css('width', width);
     $('.slide .buttonNext').css('left', ((width / 2) + 304));
	// $('#IEroot7 .slide .buttonNext').css('left', ((width / 2) + 24));
     
	 $('#IEroot7 .slide .buttonPrev').css('left', ((width / 2) - 1014));
     $('.slide .buttonPrev').css('left', ((width / 2) - 414));

     $('.upperArea').css('width', (width - 80));
}
