function setRule(){	contentDim = $('content').getCoordinates();	footerDim = $('footer').getCoordinates();	vruleHeight = footerDim.top.toInt() - contentDim.top.toInt();	left_colDim = $('left_col').getCoordinates();	content_banner_height = $('content_banner').getStyle('height').toInt();	$('vrule').setStyle('height',vruleHeight - content_banner_height );	$('vrule').setStyle('left',left_colDim.width);}window.addEvent('load',function(){	setRule();});