$j(document).ready(function(){
							
	var content_height = $j('.regular #center').height();
	
	var left_height = $j('.regular #left_content').height();
	
	var nav_header_height = $j('.regular #left_content h2').height();
	
	// FIND OUT IF BASKET IS VISIBLE
	var basket_height = $j('.regular #left_content .basket').height();
	var sidenav_height = $j('.regular #left_content .sidenav').height();
	
	if((basket_height != null) && (sidenav_height != null))
	{
		if(content_height > left_height)
		{
			$j('.regular #left_content div.basket div.block_content').height(content_height - (left_height - basket_height) - nav_header_height);
		}	
	}
	else if((basket_height != null) && (sidenav_height == null))
	{
		if(content_height > left_height)
		{
			$j('.regular #left_content div.basket div.block_content').height(content_height - nav_header_height);
		}
	}
	else
	{
		if(content_height > left_height)
		{
			$j('.regular #left_content div.block_content').height(content_height - nav_header_height);
		}	
	}
	
});
