$(document).ready(function(){
	frameSize();
	
    function frameSize(){
		var wide = $(window).width();
		if ((wide == 470) || (wide == 615)){
			$("#manualWrap").width(wide);
			$("#manualWrap").height(wide * 3 / 4);
		} else {
			var newWin = $(window).width() - 200;
			$("#manualWrap").width(newWin);
			$("#manualWrap").height(newWin * 3 / 4);
		}
	}
	
	$(window).resize(function(){
	   frameSize();
	});
	
});

//$(document).ready(function(){
//	var newWidth = $(window).width();						   
//	sizeUp();
//	
//    function sizeUp(){
//		alert(newWidth);
//			$("#manualWrap").width(newWidth);
//			$("#manualWrap").height(newWidth * 3 / 4);
//	}
//	
//	$(window).resize(function(){
//	   sizeUp();
//	});
//});
