$(window).scroll(function(){
	right_clm_posi();
});

$(window).bind("resize",function(){
	right_clm_posi();
});	



function right_clm_posi(){
	
	if ($.browser.msie && $.browser.version == 6){

	}else{
		//get top
		var win_top;

		if ( document.documentElement.scrollTop > 0 ){
			win_top = document.documentElement.scrollTop;
		}else{
			win_top = document.body.scrollTop;		
		}
	
		var obj_top = $(document).scrollTop()+185;
		$("#right_clm_wrapper").css("top", obj_top );
	}	
	
}
