document.write('<style>#portal-breadcrumbs {display: none;}</style>');
jQuery(function ($) {
	
	// tweek the path bar
	if ($('body').hasClass('template-customer_core_view') || 
	    $('body').hasClass('template-customer_rent_view') || 
	    $('body').hasClass('template-customer_state_view') ||
	    $('body').hasClass('template-customer_drift_view') ||
	    $('body').hasClass('template-customer_contact_view')) 
	{
		var name = $('#content').find('.name').html();
		
		$('#breadcrumbs-3').find('a').replaceWith(name);
		if ($('#breadcrumbs-5').length) $('#portal-breadcrumbs').css('display','block');
	}
});
