/*
 * common function's
 *
 */

$(document).ready(function(){
	var c = {
		
	$wrap:$("#wrap"),
	$box:$("#box"),
	$colLeft:$("#leftcolumn"),
	$colRight:$("#rightcolumn"),
	$footer:$("#footer"),
	$window:$(window),
	$document:$(document)		
	}

	
	c.fResize =  function(e){
		var winwidth = c.$window.width();
		
		if( winwidth>=900&&winwidth<1200){
			console.log(winwidth);
			var lColWidth = winwidth-c.$colRight.width()-40;//margin;
			
			c.$wrap.css({"width":(winwidth)+"px"});
			c.$colLeft.css({"width":(lColWidth)+"px"});
		}			
		return "resized";
	}
	

	//c.$window.resize(c.fResize);
	//setTimeout( c.fResize, 50 );
});
