function contentHeight(){
	totalHeight = $('div.l-wrap').height();
	topOffset = $('div.l-content').position().top;
	contentHeight = totalHeight - topOffset - 150;
	styleHeight = 'min-height: ' + contentHeight + 'px; _height: ' + contentHeight + 'px'
	$('div.l-content').attr('style', styleHeight);
}
window.onload = function(){
	//contentHeight()
}
$(function() {
	
	$('div.b-breadcrumb li:eq(0)').addClass('item1');
	$('div.b-breadcrumb li:eq(1)').addClass('item2');
	$('div.b-breadcrumb li:eq(2)').addClass('item3');
	$('.b-nav_left').accordion({
		header: 'div.title',
		autoheight: false,
		active: '.selected'
	});

});
