$(document).ready(function() {
	// do stuff when DOM is ready
	var leftCol = $('#left_sidebar');
	var rightCol = $('#right');
	var centerCol = $('#center');

	if (leftCol.height() < centerCol.height()) {
		leftCol.height( centerCol.height()-30 + 'px' ) 
	}
	
	if (rightCol.height() < centerCol.height()) {
	rightCol.height( centerCol.height()-20 + 'px' ) 
	}

	$('#left_sidebar h3').corner('br 10px');
	$('#left_sidebar .separ').corner('tr 10px');
	$('#center #breadcrumbs,#content .products .product').corner('bottom 10px').parent().corner('bottom 10px');
	$('#center #content').corner('10px').parent().corner('10px');
	
	$('img.product_photo').load(function(){
		$.each($('.product'),function(){
			$(this).width($(this).children('img').width()+2);
			
			if (leftCol.height() < centerCol.height()) {
				leftCol.height( centerCol.height()-30 + 'px' ) 
			}
	
			if (rightCol.height() < centerCol.height()) {
				rightCol.height( centerCol.height()-20 + 'px' ) 
			}
			
		});
	});
	
	$(window).focus(function(){
		if (leftCol.height() < centerCol.height()) {
			leftCol.height( centerCol.height()-30 + 'px' ) 
		}

		if (rightCol.height() < centerCol.height()) {
			rightCol.height( centerCol.height()-20 + 'px' ) 
		}		
	});
});
