function setWrapper() {
    if (window.innerWidth) {
			theWidth = window.innerWidth
    } else if (document.documentElement &&
                document.documentElement.clientWidth) {
	theWidth = document.documentElement.clientWidth
    } else if (document.body) {
	theWidth = document.body.clientWidth
    }
    if (theWidth != 0) {
	
      if (theWidth < 878) {
        $('#container').css('width',760);
		$('#sidebar img').css({display: "inline",margin:"20px 6px 6px 6px"});
		$("#sidebar").css({width:"660px"})
      }  else {
        $('#container').css('width',880);
			$('#sidebar img').css({display: "block",margin:"0 0 10px 0"});
			$("#sidebar").css({width:"132px"})

      }
    }
  }


$(document).ready(function(){ 
 	setWrapper();
 	$(window).resize(setWrapper);
 
 });