
/*
 * Find float-bg-box an set the width of the line element
 */
$(document).ready(function() {
	$('.float-bg-box').each(function (){
		var lineW = $(this).outerWidth() -22;
		
		$(this).find('.bg-box-innerborder-top').css('width', lineW + 'px' );	
		$(this).find('.bg-box-innerborder-bottom').css('width', lineW + 'px' );
	});
	
});
