var product_view = {};

product_view.basket_container = null;

product_view.reposition_tables = function(){
	var content = document.getElementById("product_view_content");
	if(content){
		var first_table = content.getElementsByTagName("table")[0];
		var basket = document.getElementById(product_view.basket_container);
		basket_coord = DocumentDOM.GetCoordinates(basket);
		basket_coord = basket_coord[1] * 1;
		basket_height = basket.offsetHeight * 1;
		first_table_coord = DocumentDOM.GetCoordinates(first_table);
		first_table_coord = first_table_coord[1] * 1;
		var margin = 0;
		if((basket_coord + basket_height) > first_table_coord){
			var spacer = null;
			while((basket_coord + basket_height) > first_table_coord){
				first_table_coord += 12;
				spacer = document.createElement("br");
				first_table.parentNode.insertBefore(spacer, first_table);
			}
		}
		first_table.width = "";
	}
}
