

$(function() {
	ww = $(window).width();
	wh = $(window).height();
	if(ww <= 1220) {
		$("#wrapper").css("width", 1220);
	}else{
		$("#wrapper").css("width", "100%");	
	}
});

function resizeW() {
	if(ww <= 1220) {
		$("#wrapper").css("width", 1220);
	}else{
		$("#wrapper").css("width", "100%");	
	}	
}
function scrolls(){
		$("#windowC").css("right", 20);
}

$(window).bind("resize", resizeW);
$(window).bind("scroll", scrolls);