$(document).ready( function()
{
	//We must make sure that the menu_and content
	//div is large enough to accomodate the restaurant
	//menu:
	

	var restaurant_offset = 0;
	var cart_offset = 0;

	if( $('div.restaurant_bar').length != 0 )
	{
		restaurant_offset = $('div.restaurant_bar')[0].offsetHeight;
	};
	
	if( $('div.cart_bar').length != 0 )
	{
		cart_offset = $('div.cart_bar')[0].offsetHeight;
	};
	
	var offset = Math.max( restaurant_offset , cart_offset );
	
	if( $('div.menu_and_content')[0].offsetHeight < offset )
	{
		$('div.menu_and_content').css( { height : (offset + 50) + 'px' } );
	};
	
});