/**
 * @author bruce 
 * @copyright (c) BBQQ STUDIO 2009
 */
$(document).ready(function(){
   // first, check size and set...
   resetRightCol();
   
   $(window).resize(function(){
   	    resetRightCol();
   });
   
});

function resetRightCol()
{
	var width = $(window).width();
	var targ  = $('#bq_body_right');
	targ.removeClass();
	targ.css('width', width - 890);

}// end resetRightCol
