// JavaScript Document

$(function() {
	if ((screen.width<1100)&&(screen.height<801)) {
		$("#content").css({'marginRight': '10%'});
}

	if((screen.width>1600)||(screen.height>802)) {
		$("#bgRoom").css({ 'background-image': 'url(../images/bgRoom_b.jpg)', 'left': 0, 'width': '1920px', 'height': '1200px' })	
	}
});

