$(document).ready(function() {
	$('.redbar_toggle_subitem').hide();
	$('.redbar_toggle_item').prepend('<img src="/carverma_images/buttons/ARRwhite_plus.gif">');
	$('.redbar_toggle_item').toggle(
		function() {
			$(this).children('img').attr('src', '/carverma_images/buttons/ARRwhite_minus.gif');
			$(this).next('.redbar_toggle_subitem').fadeIn();
		},
		function() {
			$(this).children('img').attr('src', '/carverma_images/buttons/ARRwhite_plus.gif');
			$(this).next('.redbar_toggle_subitem').fadeOut();
		}
	); // end toggle
});

$(document).ready(function() {
	$('.showmore_subitem').hide();
	$('.showmore_item').prepend('<img src="/carverma_images/buttons/bevel_plus.gif">');
	$('.showmore_item').toggle(
		function() {
			$(this).children('img').attr('src', '/carverma_images/buttons/bevel_minus.gif');
			$(this).next('.showmore_subitem').fadeIn();
		},
		function() {
			$(this).children('img').attr('src', '/carverma_images/buttons/bevel_plus.gif');
			$(this).next('.showmore_subitem').fadeOut();
		}
	); // end toggle
});


