function resizeBlocks(){
	footHeight = $('div.l-foot').outerHeight();
	$('div.l-wrap').css('margin-bottom', -footHeight + 'px');
	$('div.l-mid').css('padding-bottom', footHeight + 20 + 'px');
	
	phoneHeight  = $('div.b-phone_text').outerHeight();
	headerHeight = $('div.l-head').outerHeight();
	$('div.b-phone').css('padding-top', (headerHeight - phoneHeight)/2 );
	
	$('div.b-top-nav').css('top', (headerHeight - 20)/2 );
}

$(document).ready(function(){
	$('table.table tr:nth-child(even)').addClass('even');
	resizeBlocks();
	$('div.b-photo-list a').lightBox();
});
